mirror of
https://github.com/Theaninova/Arduino-IRremote.git
synced 2025-12-13 01:46:21 +00:00
17 lines
213 B
C++
17 lines
213 B
C++
|
|
#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
|
|
}
|
|
}
|