Introduction: Using an ESP8266 to Control Mains Sockets Using 433mhz Transmitter and Receiver
In this Instructable I will show how to control a main socket using a 433mhz transmitter and receiver.
I started this project because I wanted to be able to switch my lamp on and off without using the remote that I already had for switching the mains sockets. So that if I was in another room and forgot to switch off the lamp I could do it from my phone using home-assistant.
Step 1: What You'll Need for This Instructable
You can get a number of different ESP8266 boards, I'm using a NodeMCU DevKit for mine. The 433mhz transmitter and receiver are pretty standard and can be purchased from ebay.
- ESP8266 board
- 433mhz RF transmitter and receiver pair for arduino
- Breadboard to make the circuit
- Some wires to connect it up
Step 2: Arduino Sketch for Receiving the 433mhz Codes From the Existing Remote
First of all you'll need the rc-switch library (thanks to sui77 for this library and example code). You can get this from https://github.com/sui77/rc-switch
Once you have this installed you can simply load the example called ReceiveDemo_Advanced. With this example uploaded to your ESP8266 you should be able to 'sniff' the 433mhz signals from the transmitter that came with your remote socket.
Open up the serial monitor in the Arduino IDE and press a button which switched on the socket on your remote that came with your remote socket, and you should see something like this:
Received 1394007 / 24bit Protocol: 1
These are the only real import parts that you need to keep an eye out for, and you'll need to put these into the sending script to send the same data to the remote socket to switch on.
Then do the same for the off button on the remote, again make a note of the code.
This library and receiver supports the following chipsets:
- SC5262 / SC5272
- HX2262 / HX2272
- PT2262 / PT2272
- EV1527 / RT1527 / FP1527 / HS1527
Intertechno outlets
Step 3: How to Connect Your ESP8266 to the Receiver
The 433mhz receiver only needs 3 wires, these are for power and data.
So simply connect the VCC and GND on the receiver to VIN and GND on the ESP8266 and connect the data pin of the receiver to a GPIO of choice on the ESP8266 too.
In my project I used pin D3, which is GPIO0.
Step 4: Arduino Sketch for Sending the Codes to the Mains Sockets
To send the code to your remote control main socket simply use the following sketch, changing the decimal code that you got from the receiver.
/* Example for different sending methods https://github.com/sui77/rc-switch/ */ #include <RCSwitch.h> RCSwitch mySwitch = RCSwitch(); void setup() { Serial.begin(9600); // Transmitter is connected to Arduino Pin #0 mySwitch.enableTransmit(0); // Optional set pulse length. // mySwitch.setPulseLength(320); // Optional set protocol (default is 1, will work for most outlets) // mySwitch.setProtocol(2); // Optional set number of transmission repetitions. // mySwitch.setRepeatTransmit(15); } void loop() { /* Same switch as above, but using decimal code */ mySwitch.send(1394007, 24); delay(2000); mySwitch.send(1394006, 24); delay(2000); }
Step 5: How to Connect Your ESP8266 to the Transmitter
Connected the transmitter to the ESP8266 is very simple too. There are only 3 connections again, the same as the receiver, VCC, GND and Data.
So just connect VCC to VIN and GND to GND, and then connect the Data pin on the transmitter to a GPIO on the ESP8266 board.
I used GPIO0 which is pin D3.
Then once the sketch is uploaded you should see the remote socket switch on and off every 2 second. Proof it works...
33 Comments
9 months ago
Great tutorial, even 7 years later. I was having an issue with pin D3 / GPIO0. The program would not execute properly if I powered the board on with pin D3 connected. It worked great if I disconnected the data wire from D3, powered the board on, and plugged the data wire back in. I believe if the ESP12E detects voltage on pin D3 on system start, it interprets this as a cue to flash the storage, and the program will not execute properly. I moved the data pin to D1, edited the program accordingly, and it works great now.
7 years ago
What was the reason for using a NodeMCU, normally used for its built-in 2.4GHz WiFi capability?
Reply 7 years ago
I used it so that I can control the GPIO pin to send the signal to the remote controlled power socket remotely :) as over a network connection using home-assistant. I can switch it on and off on a timer too, so that I can switch on a light in the evening even when I'm not at home.
Reply 7 years ago
Can't this be done with an arduino board?
Reply 7 years ago
Yeah it can, you're right, but you would have to use a ethernet shield to be able to connect to it using MQTT to get it to switch the socket on and off using a network connection.
Reply 7 years ago
I have been confused about your project because there was no mention of any code for NodeMCU Wifi capability (and perhaps because I didn't study your write-up carefully enough). To do the remote capability you want you are apparently using some type of WiFi code. Am I supposed to infer that you are using Home Assist code? (I'm not familiar with Home Assist). If that had been clear I would not have made my first comment, and if you had made it clear in the reply that would have cleared up my confusion. Not trying to be mean, just noting that all of us need to be careful to not assume too much knowledge from our readers.
I do appreciate your replies. Thanks.
Reply 7 years ago
Thanks for your comment, I does make me think that this wasn't complete in some ways. I write about being able to use this circuit to switch the socket on and off remotely but dont say how I'm doing that exactly. Mainly because at the I was writing this and creating the project for myself I hadn't actually done that part either.
I did write at the very end of the Instructable that you can find details on how to hook this up with home-assistant, but I remove that in the end because I haven't written an Instructable about that.
If you would like a write up on how to do this I can do one, not a problem.
Reply 7 years ago
No need to do write-up for me now. I was just trying to understand your interesting project. However, for the Instructable to be useful to a person that wants to build this and doesn't have the necessary background, the write-up would be necessary. Maybe you should wait for one or more readers to request it. This exchange we've had should prompt them.
Best regards,
John R. Anderson
Reply 7 years ago
I have an ESP8266 code that allows you to switch RC switches on and off from a webpage. I will publish it soon in an ibble, but anyone interested and not able to wait can drop me a message
Reply 1 year ago
that is awesome! would you mind to share it with me please? thanks
Question 2 years ago on Step 5
This is very helpful. The version of receiver you have has a very short range even with an antenna added. Digikey sells one that has excellent range (Picture: digikey left, original right). Anyway, I was able to receive the codes from my outlet remote. On and Off codes. And then when I send them via the transmitter, I see them on the receiver exactly like the remote sent them, but it doesn't switch the outlet at all. Distance doesn't matter. Is it encoding or something ? the "24" ? My codes are 7 digits as well. I also tried to have the outlet relearn sending the code in desperation. Thanks
Question 3 years ago
Hi,
The greate article! Thanks.
I used NodeMcu and the same receiver. I Didnt change code above (receiver); enableReceiver(0), pin D3. I used external power supply (USB didnt want to work). I used logic analyzer to see data from receiver (D3). If I press key on switch (433Mhz) then I see data on D3 (via logic analyzer), but "mySwitch.available()" always returns 0. It make me crazy, please help.
PS: I used also another receiver.
PS: The receiver should be 433 Mhz. Please check dimension of green cube (4.7 mm x 4.7m)
please help, with best regards, jiri
Answer 3 years ago
Hi,
if not solved --> use enableReceiver(D3), whenn connected at pin D3 on ESP8266 Node MCU.
Best regards
Martin
Answer 3 years ago
Hello, I have the same problem and wondering if you have found a resolution. I have used pin D3 (GPIO 0) on ESP8266 for data and tried powering the receiver with the nodemcu's 3.3 V as well as external power supply (upto 5 V). There is no reception at the antenna. If anybody has gotten receiver to work, please tell about your approach. (PS - I have both transmitter and receiver working on Arduino Uno, using the RCSwitch library as shown in the sketch.)
3 years ago
You're welcome :)
3 years ago
Hi, I did the exact circuit as described but all I get in serial monitor is random symbols when I press nodemcu reset button. Would you mind showing me where the mistake is pls?
4 years ago
Do you know how we could set it up to transmit multiple codes? I have a fan that has a 433Mhz RF remote and would like to be able to set fan speed high/meduim/low from home assistant as well as set up automations to turn it off again after a certain amount of time. Thanks in advance :)
4 years ago
On wich Pin of the nodemcu 1.0 do you connect the data pin of the receiver?
Question 5 years ago on Step 1
Can you help me understand why the IDE isn't finding the RCSwitch..h file when it shows as a tab in the sketch? I'm trying to compile for the NodeMCU, but can't get it to load.
Many Thanks, Roger
Question 5 years ago on Introduction
Hello
This project can use Magnetic sensor (433Mhz) to connect esp8266