Home automation using MQTT
- MQTT Broker
- ESP866 boards
- MQTT Lense MQTTLens Chrome extension allows you to run a local MQTT broker. Runs on port 1883 (Default port used by the broker).
- Mosquitto Broker
If running brew on Mac OS
brew install mosquitoo
ln -sfv /usr/local/opt/mosquitto/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mosquitto.plist
mosquitto_sub -t topic/state
mosquitto_pub -t topic/state -m "Hello World"
For Mac OS
ifconfig | grep "inet " | grep -Fv 127.0.0.1 | awk '{print $2}'
- IoT Button, trigger actions on the go.