mriksman
mriksman
I made a heap of modifications to wink2 in order to fix; - leakSMART valve - leakSMART leak sensors - Turning binary switches and/or light bulbs to switches/outlets - Changed...
The leakSMART valve is detected as a binary_switch, however, it does not use the 'powered' Property. For the leakSMART valve to operate, you must read/write to ``` device.last_reading.opened that.updateWinkProperty(callback, "opened",...
In order for Siri to respond to my queries if a door was opened/closed, I needed to add the following Characteristic; `Characteristic.CurrentDoorState ` In order for the Door/Window notifications to...
There is no support for water sensors. I have added support to my js file by copying the Humidity Detection, and setting; ``` that.device.last_reading.liquid_detected .addService(Service.LeakSensor) .getCharacteristic(Characteristic.LeakDetected) ``` But I have...
When I change the Target Position, I get; [wink] Changing target property 'position' of the undefined called Kitchen to 0 But nothing happens. I put in some logging lines of...
Hi, When I use the below code to create a device with separate accessories, both will intermittently go 'No Response'. Perhaps something to do with using the same `ACCESSORY_INFORMATION` Service...
I tried adding `.hidden` to a Service (LIGHTBULB), but it still appears. `*(s++) = NEW_HOMEKIT_SERVICE(LIGHTBULB, .hidden=true, .characteristics=characteristics);` When exactly is `.hidden` supposed to work?
Hey, RavenSystem's `esp-homekit-devices` allows unencrypted client commands by simply modifying these lines https://github.com/RavenSystem/esp-homekit-devices/blob/master/external_libs/homekit/src/server.c#L2984. You can then send standard unencrypted HTTP URL like ``` curl -X PUT -d '{"characteristics":[{"aid":1,"iid":9,"value":true}]}' http://device_ip_address:5556/characteristic ```...
Documentation shows that `homebridge/from/set` should show `service_type`. However, I don't see it. I get back `set = {"name":"nodeID_5","service_name":"endpoint_1","characteristic":"On","value":true}`
Seems similar to #89. When I restart, an old message in homebridge/to/remove executes and removes this accessory.   I'm sure it's something simple... Anyone got any help?