daymondm
daymondm
I don't see id 75/85 in the unknown devices list, did those devices add to homekit? Living Room and Garage Entrance were the device names
also those devices that are marked as multilevel_switch_ip_device.. do those behave the same way within postman? (s: true/false for when the switch is turned on and off, and val: 0-100...
ok no need to add the extra step through Vivint if it can be controlled directly from HomeKit, they'll be much more reliable that way. does the log file show...
the first line in the log seems like there might be two instances of Homebridge running? if not.. lets try commenting out the following lines and seeing if its the...
interesting.. maybe because the Vivint api is sending two messages each time the switch is operated, one with just the brightness value and then another with whether or not the...
hey try this real quick if you don't mind and see if it corrects that issue: ``` notify() { if (this.service) { if (this.data.val >= 0) { this.service .getCharacteristic(Characteristic.Brightness) .updateValue(this.data.val)...
replace that last bit of code (the notify function): ``` notify() { if (this.service) { if (this.data.val >= 0) { this.service .getCharacteristic(Characteristic.Brightness) .updateValue(this.data.val) } if (this.data.s == true || this.data.s...
sorry I edited that last post hopefully before you saw it, I forgot a }, there should be two of them at the end after the two // lines
copy that, thanks for trying!
strange; anything in the log file that might indicate an issue? maybe "do not know how to handle device ... " message that is the panel?