rodtoll / homebridge-isy-js

Homebridge platform plugin for the ISY series of home controllers from Universal Devices.
MIT License
22 stars 27 forks source link

Keypads and Garage Door sensors #61

Open bigtalljv opened 4 years ago

bigtalljv commented 4 years ago

Hi,

I'm not sure this is the correct place for this but I have an issue with Insteon keypads and garage door relay/sensor, they aren't working.

I am new to this and am running an ISY 994i (v5.0.16c), Homebridge 1.2.3, and homebridge-isy v0.5.0-rc23.

In the terminal window I see errors like this when I try to use a keypad button: [9/27/2020, 10:11:03] [isy-nodejs] NodeChanged Event for Unidentified Device: {"seqnum":154,"sid":"uuid:666","control":"_3","action":"LU","node":4653,"eventInfo":{"lu":{"group":4653,"ctl":4653,"rsp":"43 A4 2F 6"}}}

And during startup I see: [9/27/2020, 10:10:09] [ISY] Device Garage Garage Door- Sensor is not supported yet. [9/27/2020, 10:10:09] [ISY] Device Garage Garage Door- Relay is not supported yet.

I thought I read that the Garage Door sensor has been supported for a while and same with keypads.

Any help is appreciated. I'm happy to help any way I can.

Thanks, Jason

PaulWieland commented 4 years ago

Garage doors and keypads are supported by this plugin.

You configure the garage door in your .homebridge/config.json file. Here's mine:

                {
                        "platform": "isy-js",
                        "name": "isy-js",
                        "host": "192.168.0.100",
                        "username": "paul",
                        "password": "supersecrete",
                        "debugLoggingEnabled": false,
                        "elkEnabled": false,
                        "garageDoors": [
                                { "address": "13 34 9B 1", "name": "Garage Door", "timeToOpen": 12000 }
                        ],
                        "includedScenes": [
                        ],
                        "ignoreDevices": [
                                { "nameContains": "Garage Door-Relay","lastAddressDigit": "", "address": "13 34 9B 2"}
                        ]
                }
bigtalljv commented 4 years ago

Thanks Paul,

I think I posted this in the wrong place. I'm actually using the plugin from https://github.com/pradeepmouli/homebridge-isy-js

I don't know how far apart the fork has gone and if it still supports the same config.

Thanks, Jason