This sketch is for a WiFi enabled wall light switch with focus to reliable pushbutton switch. In the beginning or (if no WiFi connection) it is running a web server to configure WiFI (and MQTT if desired). Each second start up switch will load into OTA mode. By this you can upload a new firmware (compiled *.bin file) via web browser. The OTA mode will end after set timeout and restart into desired mode. The operation mode can be web server or MQTT to change the state of the light. The push button have to switch to ground.
- Normal press less than 1 sec but more than 50ms-> Switch light.
- Restart press: 3 sec -> Restart the module.
- Reset press: 20 sec -> Clear the settings in EEPROM
-
While a WiFi config is not set or can't connect:
- http://server_ip *-> Gives a WiFi config page
-
While a WiFi config is set and in Web control mode (iotMode==0):
-
http://server_ip/gpio
-
Will display the GIPIO state and a switch form for it
-
http://server_ip/gpio?state=0
-
Will change the GPIO directly and display the above aswell
-
http://server_ip/cleareeprom
-
Will reset the WiFi setting and rest to configure mode as AP
-
While in OTA mode each second start:
- http://server_ip *-> Gives a WiFi config page
server_ip is the IP address of the ESP8266 module, will be printed to Serial when the module is connected.
Your WiFi switch should be connected like this
You can reorder the working PCB here: https://oshpark.com/shared_projects/xoEZ3PnV or get it from any where else from the KiCad design files "ElectronicDesignAutomation" folder.
- ESP8266-03 module
- AC to DC Power Module Supply Isolation Input: AC90-240V Output: 3.3V 500mA like this * http://www.ebay.com/itm/271636529720?_trksid=p2060353.m2749.l2649&ssPageName=STRK%3AMEBIDX%3AIT
- Resistor 220 Ohm SMD 1206 1x
- Resistor 330 Ohm SMD 1206 1x
- Resistor 4k7 SMD 1206 1x
- Optocuppler MOC3040 SMD 1x
- Tryac BT136D 1x
For default usage you can use the pre build firmware and flash it with NodeMcu flasher.
After fresh flash please restart the module manualy (power Off & On) otherwise software restart will not work and sometimes WiFi connect does not work.
When manually compile and flash with Arduino IDE please make sure to have this flash settings:
Open the modules page after entering config mode (Press button >20secs if you want to enter again) via http://server_ip there you can setup to be MQTT controled or Web controled.
For several snippets used the credit goes to:
- https://github.com/esp8266
- https://github.com/chriscook8/esp-arduino-apboot
- https://github.com/knolleary/pubsubclient
- https://github.com/vicatcu/pubsubclient <- Currently this needs to be used instead of the origin
- https://gist.github.com/igrr/7f7e7973366fc01d6393
- http://www.esp8266.com/viewforum.php?f=25
- http://www.esp8266.com/viewtopic.php?f=29&t=2745
- And the whole Arduino and ESP8266 comunity