David Miller

Results 95 comments of David Miller

Sorry, missed that. Siri commands are entirely down to Apple. Not sure whether you can do something with the Shortcuts App? Let me know if there's a more suitable service...

Not yet but it's Defined in https://github.com/homebridge/HAP-NodeJS/blob/master/src/lib/definitions/ServiceDefinitions.ts so I'll add it to my list...

I didn't add the `irrigationSystem` support and haven't looked at the code in detail. Would you be able to create a pull request with the changes required to fix this?

Check that everything's pointing at the same MQTT server too. I'd suggest pointing an independent MQTT client (e.g. mosquitto_sub) at your MQTT server too - that way you can see...

I'm not aware of any way to do this, unfortunately. Happy to look if anyone has any suggestions...

I think the problem might be that all Boolean values need to match your configured onValue and offValue. You might be better using integer values (1 and 0) and putting...

Does this happen with all mqttthing lightbulbs in homebridge 1.4? I've not had time to try to reproduce yet.

Just checked and I'm still on 1.3.8... I'll try updating my development instance.

Finally updated my development instance to 1.4.0, but I'm not seeing this issue - I can turn my test bulbs on and they stay on.

Just tried with config: ```json "accessories": [ { "accessory": "mqttthing", "type": "lightbulb", "url": "homebridge2", "name": "Escalier", "topics": { "getOn": { "topic": "test/Escalier", "apply": "return JSON.parse(message).state_right" }, "setOn": "test/Escalier/right/set", "getOnline": {...