Skip to content

Instantly share code, notes, and snippets.

@lbattaglioli2000
Created June 12, 2017 13:23
Show Gist options
  • Save lbattaglioli2000/38dc1f92dad8c8d3249762959ba7ecb0 to your computer and use it in GitHub Desktop.
Save lbattaglioli2000/38dc1f92dad8c8d3249762959ba7ecb0 to your computer and use it in GitHub Desktop.
Sending
#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