Closed anon8675309 closed 1 year ago
This is already supported. The device wakes up every N minutes (configurable) to publish sensor states and check for new commands.
You are missing a retain flag in your publish command. Try this:
mosquitto_pub -h 192.168.0.109 -p 1883 -t "homebuttons/Home buttons/cmd/btn_6_label" -m "PARTY" -r
The device cannot receive messages when sleeping. The retain flag makes the MQTT broker store the message and send it to device when it reconnects.
This worked perfectly, thanks! I wrote up some documentation about testing directly with MQTT and will submit a pull request so it can be added to the official repo if it looks acceptable.
As a user, I would like to be able to set the button labels without touching the device.
Here's an example of commands I would expect to cause the label for button 6 to be updated within N minutes:
I saw that the device can subscribe to events, so I would expect that this should be possible even when operating in sleep mode.
Note: I am not currently using HomeAssistant and am not planning on doing so. I am interacting directly with the HomeButton over MQTT.