Smart switch for AC, based on Arduino
TODO
TODO
TODO
Using default configuration for MQTT, you can interact with smart-switch like this:
#Listen output MQTT messages from specific smart-switch
mosquitto_sub -h "<broker>" -t "pedroetb/smart-switch/001/output"
#Listen log MQTT messages from specific smart-switch
mosquitto_sub -h "<broker>" -t "pedroetb/smart-switch/001/log"
#Listen output MQTT messages from any smart-switch
mosquitto_sub -h "<broker>" -v -t "pedroetb/smart-switch/+/output"
#Listen log MQTT messages from any smart-switch
mosquitto_sub -h "<broker>" -v -t "pedroetb/smart-switch/+/log"
#Listen all MQTT messages (input, output and log) from/to any smart-switch
mosquitto_sub -h "<broker>" -v -t "pedroetb/smart-switch/#"
#Send any action ("/status" for example) as MQTT message to specific smart-switch
mosquitto_pub -h "<broker>" -t "pedroetb/smart-switch/001/input" -m "/status"
This project is released under the MIT License.
- BUILD a Smart Switch With an Arduino and a Relay - YouTube
- NodeMCU, la popular placa de desarrollo con ESP8266
- Turn on and Off a Lamp Clapping Twice, Using Arduino : 4 Steps - Instructables
- Cómo emplear el ESP8266 o ESP32 como servidor HTTP
- Arduino Tutorial: Avoiding the Overflow Issue When Using millis() and micros()
- ESP8266 Arduino: Software restart - techtutorialsx
- Instalar un interruptor, conmutador o cruzamiento - Bricolajero
- Detector de cruce por cero con Arduino y optoacoplador H11AA1
- pubsubclient/mqtt_large_message.ino at master · knolleary/pubsubclient
- Cómo programar el ESP8266 o ESP32 por WiFi con Arduino OTA
- H11aa1 y Arduino : Midiento la frecuencia de red. - YouTube
- Control de Fase con Arduino : Diseño del Cirrcuito. - YouTube
- The Evils of Arduino Strings | Majenko's Hardware Hacking Blog
- Memory, memory, always memory !!! – An Esp8266 microcontroller in my Life
- Optimizing SRAM | Memories of an Arduino | Adafruit Learning System
- Template Metaprogramming: Compile time loops over class methods | by Niko Savas | Medium