node server running in docker to execute commands on local lan connected lifx bulbs
1.1K
node server running in docker to execute commands on local lan connected lifx bulbs used with ha-bridge for alexa integration to avoid cloud bullshit
lifx api @ npmjs | github
demo usage script @ /app/send_cmd inside container
# Run the container
docker run -d --net=host --name lifx-api-endpoint \
--log-driver json-file --log-opt max-size=10m \
-e LISTEN_PORT='9010' \
-e BROADCAST_NETWORK='192.168.55.9' \
-e BULB_IPS='192.168.55.10,192.168.55.11' \
snipzwolf/lifx-api-endpoint;
# Sending commands
docker exec -it lifx-api-endpoint /bin/bash /app/send_cmd off;
docker exec -it lifx-api-endpoint /bin/bash /app/send_cmd scene,bright;
Content type
Image
Digest
Size
248 MB
Last updated
almost 8 years ago
docker pull snipzwolf/lifx-api-endpoint