Created
June 12, 2017 13:23
-
-
Save lbattaglioli2000/38dc1f92dad8c8d3249762959ba7ecb0 to your computer and use it in GitHub Desktop.
Sending
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <IRremote.h> | |
IRsend irsend; | |
void setup() | |
{ | |
} | |
void loop() { | |
for (int i = 0; i < 3; i++) { | |
irsend.sendSony(0x29A, 12); | |
delay(10); | |
} | |
delay(500); //0.5 second delay between each signal burst | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment