From 222630922f6e404bc4744df8812512c9fe404ef8 Mon Sep 17 00:00:00 2001 From: Rafi Khan Date: Sat, 9 Sep 2017 19:46:13 -0400 Subject: [PATCH] Added example test file for recs80 --- examples/IRsendRECS80Test/IRsendRECS80Test.ino | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 examples/IRsendRECS80Test/IRsendRECS80Test.ino 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 + } +}