Feed on
Posts
Comments
Update: check out the RFToy — an easy-to-use standalone gadget to control remote power sockets. Also, support for remote power sockets have been added to OpenSprinkler firmware 2.1.1.

Note: the RF transmitter used in this article is available for purchase in the shop page.

In a previous post I described a way to use an Arduino to interface with remote controlled power sockets. The idea was to make use of the original remote control, and a high-side transistor switch to simulate button presses. This approach is generic: you don’t need to know how the remote control signal is encoded, instead, just treat the remote control as a black box and simulate the button presses. However, the downside of this approach is that it requires soldering wires and components to the remote control, which is quite a bit of work.

Update: check out the RFToy — an easy-to-use standalone gadget to control remote power sockets. Also, support for remote power sockets have been added to OpenSprinkler firmware 2.1.1.

Recently, inspired by the JeeLabs KAKU remote switch article, I figured out a new way to interface with these remote power switches. The method published by JeeLabs uses an RFM12B transceiver, which is cool because my OpenSprinkler design has a reserved spot for RFM12B. Unfortunately after many experiments I was unable to get it to work with my switches. However, I did succeed by using a 433MHz RF transmitter purchased from SparkFun. So below I document the process of how I did it.

To begin, I took apart the remote control. The goal is to reverse engineering the signal sent from the remote control, so that I can use an Arduino to simulate the same signal. This will allow me to use a program to control the power sockets. The schematic of the remote control circuit can be found in the previous post. Basically it consists of an encoder IC (HT2262 or PT2262) and a 433MHz RF transmitter circuit.

By connecting an oscilloscope to the circuit I was able to analyze the signal patterns. Details can be found in the video attached at the end of this post. Below are the patterns I observed when button 1 is pressed (corresponding to power socket 1).

The signal consists of two basic patterns: a short HIGH followed by a long LOW, which I call a ‘0’ all together, and a long HIGH followed by a short LOW, which I call ‘1’. The long part is roughly 500us and the short part is roughly 160us (so it’s about a 3:1 ratio). Each signal sequence consists of 25 bits: the first 16 bits are always ‘0000 1111 0101 0101’, which I call the ‘signature’; and the next 8 bits are the ‘command’, which correspond to the index of the power socket; finally, there is always an ending ‘0’.

For example, the entire sequence to toggle socket 1 is

0000 1111 0101 0101 1100 0001 0

the entire sequence for socket 2 is:

0000 1111 0101 0101 0011 0001 0

and for socket 3 it is:

0000 1111 0101 0101 0000 1101 0

Again, a ‘1’ means a 500us HIGH followed by a 160us LOW, and a ‘0’ means a 160us HIGH followed by a 500us LOW. When a button is pressed, the sequence is repeated several times, for robustness I guess.

Interestingly, you can OR the command part in order to toggle two or three sockets at the same time. For example, the sequence below will simultaneously toggle socket 1 and 2:

0000 1111 0101 0101 1111 0001 0

Next, to simulate the remote control signal using an Arduino, I used a 434MHz RF transmitter from SparkFun. This transmitter has only 4 pins: Gnd, Vcc, Antenna, and Data. The data pin can be connected to any digital pin on the Arduino in order to send the control sequence as analyzed above.

For demonstration, I used Arduino pin 10 to send the control sequence through the Data pin. The connection is as follows: VCC->+5V, GND->GND, DATA->Digital 10, ANT->a short wire. The supply voltage for the RF transmitter can be anywhere between 1.5V to 12V. The higher the voltage, the longer the transmission range. Normally 5V should be good for at least 15-20 meters. If you want the highest range, use a +12V power adapter to power your Arduino, and connect the RF transmitter Vcc pin to the Arduino VIN pin. Alternatively, you can add a voltage boost converter to bump +5V to +12V.

Below you can download the Arduino program I wrote. The code should be easy to follow.

If you have a different remote controlled power switch, you can follow the same procedure to find out the control sequence, then modify the program accordingly. A video demo is provided below:

Credits: the method is based on JeeLabs KAKU remote switch and the code is based on the kaku_demo sketch included in their RF12 Arduino library.

Note: the RF transmitter (434MHz) is available for purchase in the shop page.


Update 1: apparently if you look at the datasheet of PT2262, which I found a copy here, it explains how the encoding pattern is computed. The ‘signature’ part has to do with the status of each pin from A0 to A7 on PT2262 – whether the pin is connected to GND, VCC, or floating, and the ‘command’ part is determined by the status of each pin from D0 to D3. I compared the circuit with the datasheet and verified that the pattern I observed from the oscilloscope matches the calculation. Also, according to the datasheet and the resistor value I found on the remote control, it looks like the long delay should be about 400us and short delay 133us, which is a bit different from the 500us and 160us observed from the oscilloscope. Also, the ending ‘0’ in my sequence turns out to be a ‘sync’ bit, which is 133us high followed by 4200us low. The fact that my original sketch has worked means there is a some level of tolerance in the timings. So they do not have to be highly accurate.

Update 2: new version of remote control. A reader of this post, Chuck, sent me a question that the sketch doesn’t seem to work with his remote control. After researching this issue, we found that the new version of the remote has changed to use SMT components and also has changed the coding pattern. Chuck sent me an image of the back of the PCB. From the image and the datasheet of PT2262, I figured out the new coding pattern. Basically, the ‘signature’ part of the code has been changed from

0000 1111 0101 0101

to

1101 0111 0101 0101

More technically, the coding pattern can be derived from the connections of Pins 0-7 of PT2262. In the newer version (from the PCB image on the left), the first 4 pins are connected as HIGH, FLOAT, FLOAT, HIGH, whereas the older version is connected as LOW, LOW, HIGH, HIGH. Here HIGH means connected to Vcc, LOW means connected to Ground, FLOAT means unconnected. Taking a look at the datasheet, you can easily figure out the actual code: LOW -> 00, HIGH -> 11, FLOAT: 01.

Chuck sent me his modified code, which you can download here.


23 Responses to “A New Way to Interface with Remote Power Switches”

  1. pHumn says:

    Excellent project, Ray; thanks for the walkthrough! I have replicated the same setup (roughly: I’m using an Arduino Uno, and SparkFun looks like they updated the RF unit), but am having some difficulty getting the switches to respond to the Arduino/RF signal. I noticed that the binary in your video is different than in your downloadable code: which has worked for you? The only response I have yet to notice is that when I comment out the 5sec delay, the switches will stop responding to the normal remote signal. At least SOMETHING is happening. Any help would be greatly appreciated, and thanks again!

    • ray says:

      It’s possible that your remote switch is a newer version that has changed the coding pattern. Another reader sent me a picture of his PCB and from the connection I was able to figure out the new coding pattern. First of all, try to change the ‘signature’ part of the code:
      from 0000111101010101
      to 1101011101010101
      and see if it works. If it doesn’t, you need to disassemble the remote control (i.e. the transmitter), and take a *high-resolution* picture of the back of the PCB, and send to me. I will see if I can figure it out.

  2. Marcoelgordo says:

    Hi Ray,
    Fantastic tutorial. I have applied your methodology and was able to decrypt the binary code of my wireless thermostat.
    The only issue I have is that a 1 is a DELAYLONG Down followed by DELAYSHORT High.
    I have tried to amend your code but once it finish sending the sequence the pin stays High.
    Any ideas how I can fix it?
    Thanks.
    Marco

    • Marcoelgordo says:

      Ray,
      I actually figured it out myself. I now manage to turn the heater on and on through my Arduino.
      The solution was to use chuck’s code and amend it as follow
      digitalWrite(sendPin, LOW);
      delayMicroseconds(160+((command >> (31 – ix) & 0x01)*2*160));
      digitalWrite(sendPin, HIGH);
      delayMicroseconds(160+(!(command >> (31 – ix) & 0x01)*2*160));
      digitalWrite(sendPin, LOW);
      Great tutorial thanks again for sharing with us.
      Cheers

  3. Great article! I’ve got it working perfectly with the UK edition of the same 3 plugs available from Amazon UK http://www.amazon.co.uk/gp/product/B000H9HU70/

  4. Kyle says:

    Yet another iteration of the ‘signature’, this was the one for my set:
    1111111101010101

  5. Sam says:

    could you help me out with my transmitter? I’m using an Arduino Mega ADK and connecting my transmitter to pwm pin 10, not A10. I’m new to all of this and would greatly appreciate the help.
    https://www.dropbox.com/s/bf3l0feejfa7fzv/2013-01-26%2017.32.10.jpg

    Thanks!

  6. Sam says:

    Figured it out, my signature is 11111101. Purchased my switches in January of 2013

  7. Felipe says:

    Hi

    How do you figure out the 433 Mhz needed?

    • ray says:

      Open the remote, and if you can find the resonator, the frequency (433 or 315) is usually printed on the resonator. Otherwise, you can try both frequencies and it’s pretty easy to tell (from the receiver signal) which is the correct one.

  8. I’ve hacked together a NIF for the Raspberry-PI GPIO hardware library and reimplemented the pt2262 encoding written here in Erlang. So you can now use these sockets via a Raspberry-PI!

    https://github.com/mokele/pt2262

    enjoy!

  9. igor says:

    hi ,
    thanks for the tutorial it’s the best that i found on the net
    but, i wasn’t able to make mine to work ,
    i have a HS2264 I found his signature , but i can’t find the command
    , because i don’t have a silascop is there any other way to find the comand ?

    I tryed to make an array with all the options , but it didn’t worked 🙁
    do you have any suggestion for me ?

    • ray says:

      You can still get the code by checking the connection of your HS2264 with its datasheet. The second half of the post above discussed how to.

  10. jack says:

    hi Ray, thanks for the great tutorial. i think this is the best ever 🙂
    i am using hs1527 from watts clever out let remote. can you please
    tell me how to figure out the signature and the command. thanks

  11. Charlie says:

    http://rayshobby.net/blog/wp-content/uploads/2011/10/ht2262_schematic.jpg

    I reference to this transmitter schematic you reverse engineered:
    I’d like to build this transmitter directly into my custom pcb. But there are a couple parts on the schematic I’m not sure about.
    Where is the resonator?
    What is the symbol with the 25P value?
    Is the part with the value of 5p a 5pF cap?
    The MPSH10 transistor is connect to what looks like another coil/choke, but has no value. What is that part?

  12. george says:

    Hi Ray:
    This is an awesome tutorial.
    I am working on doing the same thing using a digispark board (attiny85 MCU), i have a ‘zap’ remote controller for an outlet, i have the oscilloscope scope capture for ON and OFF on all 5 channels but i cannot seem to decode the pulses can you help me?
    https://goo.gl/photos/MmvQxrx9qt7LjdLk9
    https://goo.gl/photos/iyekY4BbBCvdwpnV9
    Those are the pictures of the remote’s PCB.

  13. scott says:

    can this board be switched to a camera.which I’m sure it can.i would like to send a picture of you would please send me an email

Leave a Reply to pHumn