In this tutorial I will show you how to convert an old power strip into WIFI remote control. This will allow us to control electrical devices from the Internet via HTTP. For example, we will be able to turn on and turn off a heater, fan or light over the internet. To build I will use a popular electronic circuit ESP8266 D1 mini. ESP8266 is a good platform for IoT (the Internet of Things). This article can also be seen here: ESP8266 WIFI Remote Relay Switch.
Step 1: Components- ESP8266 D1 mini
- Power strip
- Relay Module 250V 10A
- AC-DC buck step-down module 220V turn 5V
- Button switch
- Some wires
At the beginning I removed the broken switch and cleaned everything.
Step 3: Measuring and CuttingI measured and cut the Plexiglas board for electronic circuits. For cutting I used a hot wire foam cutter from the previous project. Follow this link to see how I built this tool.
Step 4: DrillingI drilled mounting holes for the Plexiglas board. Then I mounted the Plexiglas board inside the power strip.
Step 5: SchemeThe next step is assembling the plexiglass board and electronic circuits together.
In this project, I use only one relay to control the power strip.
Step 7: Mounting ESP8266Because my power strip is made of metal, I'm afraid there might be a problem with the WIFI connection. That's why the ESP8266 is assembled inside a plastic case and screwed to the power strip.
Step 8: ESP8266 Flashing FirmwareI had a problem with flashing firmware. My version of the ESP8266 D1 mini has something wrong with the RST pin, it does not work. That's why I disconnect the USB cable from the computer instead of using the RST button. In this article, step by step, I described the entire software flashing procedure.
SONOFF - ESP8266 Update Firmware With Arduino IDE. Download source code: ESP8266_on_off.ino Before you upload the software to ESP8266 setup your WiFi connection.
#define WIFI_SSID ""
#define WIFI_PASSWORD ""
Step 9: Testing HTTP Server on ESP8266- Open serial monitor in Arduino IDE.
- Get your server IP from serial monitor.
- Now open a WWW page in your browser.
Now we can control the power strip using the web browser, we can also use the button on the plastic box. Other related projects: SONOFF - ESP8266 update firmware with Arduino IDE ESP8266 and multiple temperature sensors DS18b20 with HTTP server.
Comments