Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1.  
  2. #include <IRremote.h>
  3. IRsend irsend;
  4.  
  5. void setup(){
  6. Serial.begin(9600);
  7. }
  8.  
  9. void loop(){
  10.  
  11. send 999;
  12. }
  13.  
  14. void send(int code){
  15. IRsend.sendNEC (code,32);
  16. delay(100);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement