Use Arduino, 433Mhz transmitter,receiver and Nexa remote switch to turn on and off real lamp.
- Arduino uno board
- Jumper wires
- 433Mhz Transimitter
- 433Mhz receiver
- Standard solderless breadboard
- Nexa remote switch
- Lamp
This link has a pretty explanation about datasheet about transmitter, and this one for receiver. After you read through the datasheets, you should be able to understand how to connect the pins to the arduino.
Run rf_receiver.ino on Arduino, you should be able to see output. Mine looks like this
sender 15556058
no group
on
recipient 13
sender 15556058
no group
off
recipient 13
Change the data in homehackingeasy.ino according to the result we got from the above.
unsigned long sender = 2051610;
unsigned int recipient = 0;
bool command = true;
bool group = false;
Now run^^