1.0.4 • Published 3 years ago

homebridge-pseudo-accessories-plugin v1.0.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

"Pseudo Accessories" Plugin

This code is heavily based on the work of Ed Coen's homebridge-dummy-contact accessory, Nick Farina's homebridge-dummy accessory, and that of NorthernMan54.

With this plugin, you can create any number of pseudo accessories that can be very useful for advanced automation with HomeKit scenes.

Accessory Types:

  • Light
  • Outlet
  • Switch

Sensor Types:

  • Contact
  • Motion
  • Occupancy

Example config.json:

    {
        "name": "Pseudo",
        "debug": false,
        "accessories": [
            {
                "name": "Test Light",
                "accessoryType": "light",
                "sensorType": "contact"
            },
            {
                "name": "Test Switch",
                "accessoryType": "switch"
            },
            {
                "name": "Test outlet",
                "accessoryType": "outlet",
                "sensorType": "motion"
            }
        ],
        "platform": "Pseudo"
    }