X-Git-Url: https://git.realraum.at/?p=svn42.git;a=blobdiff_plain;f=rf433ctl%2FIRremote%2Fexamples%2FIRsendDemo%2FIRsendDemo.pde;fp=rf433ctl%2FIRremote%2Fexamples%2FIRsendDemo%2FIRsendDemo.pde;h=0000000000000000000000000000000000000000;hp=69413828c2f3b55c043094c1dc3552a3c955a167;hb=ff9137d257207a3a4b03c4f453cc1b7ce1e3cf17;hpb=a34e51d757fe52cb19de2937ae1b211894167524 diff --git a/rf433ctl/IRremote/examples/IRsendDemo/IRsendDemo.pde b/rf433ctl/IRremote/examples/IRsendDemo/IRsendDemo.pde deleted file mode 100644 index 6941382..0000000 --- a/rf433ctl/IRremote/examples/IRsendDemo/IRsendDemo.pde +++ /dev/null @@ -1,26 +0,0 @@ -/* - * IRremote: IRsendDemo - demonstrates sending IR codes with IRsend - * An IR LED must be connected to Arduino PWM pin 3. - * Version 0.1 July, 2009 - * Copyright 2009 Ken Shirriff - * http://arcfn.com - */ - -#include - -IRsend irsend; - -void setup() -{ - Serial.begin(9600); -} - -void loop() { - if (Serial.read() != -1) { - for (int i = 0; i < 3; i++) { - irsend.sendSony(0xa90, 12); // Sony TV power code - delay(100); - } - } -} -