Aqara WS-EUK01 #24561
NogginTheNog
started this conversation in
Devices
Aqara WS-EUK01
#24561
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have quite a few Aqara WS-EUK01 light switches and would like to expose the flip_indicator_light as an additional switch and publish that to Homebridge Zigbee2MQTT.
I'd like to use it as a notification that Homebridge Security System has changed from Away to Home and flash the LED on the light switch when I walk in through the front door, I can currently do it using Node-Red and the following script:-
#!/bin/bash
for i in {1..15}
do
mosquitto_pub -L mqtt://127.0.0.1:1883/ -t zigbee2mqtt/$1/set -m '{"flip_indicator_light":"OFF"}'
sleep 2
mosquitto_pub -L mqtt://127.0.0.1:1883/ -t zigbee2mqtt/$1/set -m '{"flip_indicator_light":"ON"}'
sleep 2
done
exit
https://www.zigbee2mqtt.io/devices/WS-EUK01.html#aqara-ws-euk01
Possible or not?
Beta Was this translation helpful? Give feedback.
All reactions