diff --git a/examples/IRsendRECS80Test/IRsendRECS80Test.ino b/examples/IRsendRECS80Test/IRsendRECS80Test.ino new file mode 100644 index 0000000..170ce3c --- /dev/null +++ b/examples/IRsendRECS80Test/IRsendRECS80Test.ino @@ -0,0 +1,16 @@ + +#include + +IRsend irsend; + +void setup() +{ + delay(2000); +} + +void loop() { + for (int i = 0; i < 512; i++) { + irsend.sendRECS80(i); + delay(5000); //5 second delay between each signal burst + } +}