For Christmas this year we got radio controlled sockets for our christmas lights, because all the lights are plugged in on opposite sides of the house as well as outside. When christmas ended I decided to use these sockets for the T.V. and lamps. It was pretty annoying having to use the remote though, so I had the idea to build a simple website to automate the house.
The Raspberry Pi
I started with a raspberry pi, and 433Mhz RF emitter and receiver modules, but the obvious problem was that I had nothing to send to the sockets. I had seen this done with other types of sockets, but I couldn't find any available protocols online for the sockets that we had, so I decided to record them myself.
The Receiver Setup
To record the signal, I used a raspberry pi to provide 5v for the RF receiver, and simply sent the recieved signal into the line-in jack of my computer. The only complication was that the line-in expected only 1.23v, while my rf receiver outputs 5v, so I made a simple voltage diveder (schematic pictured) to drop the voltage to around 1v which worked fine without blowing out my sound card. I used resistors i had on hand that were 4700 ohm, and 1000 ohm.
The audio was then recorded with audacity, where I manually converted the signal to ones and zeroes.
The Emitter
This was the easiest part, after recording and transcribing all of the signals, all I had to do was write a little script to send them. I found that I had to send each code twice to reliably toggle each socket, and it seems that like original remote was doing that itself as well. I suppose it's just more reliable to send everything twice.
void SendCode(char* szCode)
{
timespec sleeptime;
timespec remtime;
unsigned long long delay;
delay = 100;
for (int iSend = 0 ; iSend < 10 ; iSend++)
{
sleeptime.tv_sec = 0;
sleeptime.tv_nsec = delay * 1000; // value obtained by trial and error to match transmitter
for (int i = 0 ; i < strlen(szCode) ; i++)
{
if (szCode[i] == '1')
{
GPIO_SET = 1<<7;
}
else
{
GPIO_CLR = 1<<7;
}
nanosleep(&sleeptime,&remtime);
}
sleeptime.tv_nsec = 10000000; //10ms
nanosleep(&sleeptime,&remtime);
}
}