Skip to content

Instantly share code, notes, and snippets.

@lingmujianshi
Created November 19, 2018 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lingmujianshi/aeb63cc1fcba9eef0439b73c50d682b9 to your computer and use it in GitHub Desktop.
Save lingmujianshi/aeb63cc1fcba9eef0439b73c50d682b9 to your computer and use it in GitHub Desktop.
#include <IRremote.h>
IRsend irsend(26); //ピン番号26を指定
void setup()
{
}
void loop() {
unsigned int data = 0x41B6659A;
irsend.sendNEC(data, 32);
delay(5000); //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