document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <RCSwitch.h>
  2.  
  3. RCSwitch mSwitch = RCSwitch();
  4. void setup(){
  5.    mSwitch.enableTransmit(10);
  6. }
  7.  
  8. void loop(){
  9.    mSwitch.send(1234,24);
  10. }
');