Replies: 2 comments 1 reply
|
Thanks. Which IR protocol did you use to transmit with? |
0 replies
|
```c++
#include <IRremote.h>
IRsend irsend;
void StartIGloba()
{
for (int i = 0; i < 5; i++) {
irsend.sendNEC(0x40BD00FF, D8);
Serial.println( "sendNEC 40 BD 00 FF);
delay(40);
}
}
```
|
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
just for information if someone needs them
// details
/*
Remote control key | Code
on irCode: 40BD00FF, bits: 32
circle arror irCode: 40BD807F, bits: 32
2 circle arrow irCode: 40BD40BF, bits: 32
30min irCode: 40BD20DF, bits: 32
50 min irCode: 40BDA05F, bits: 32
home irCode: 40BD609F, bits: 32
Up irCode: 40BD906F, bits: 32
right irCode: 40BDA857, bits: 32
down irCode: 40BDF807, bits: 32
left irCode: 40BDE817, bits: 32
*/
All reactions