mirror of
https://github.com/Theaninova/Arduino-IRremote.git
synced 2025-12-12 17:36:15 +00:00
Added example test file for recs80
This commit is contained in:
16
examples/IRsendRECS80Test/IRsendRECS80Test.ino
Normal file
16
examples/IRsendRECS80Test/IRsendRECS80Test.ino
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
#include <IRremote.h>
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user