-
-
Save DDRBoxman/c68b68e41a47338496ba8cbd1bb5d20e to your computer and use it in GitHub Desktop.
irsend.sendNEC( 0x57E318E7, 32); | |
// E817 power | |
// 18E7 power off | |
// 16E9 power on | |
// 21DE hdmi1 | |
// 22DD hdmi 2 | |
// 23DC hdmi 3 | |
// F00F vol up | |
// 08F7 vol down | |
// 54AB ok | |
// 9867 up | |
// CC33 down | |
// 7887 left | |
// B44B right | |
// 6699 back | |
// 1EE1 rewind | |
// 8679 star | |
// 2CD3 rew | |
// AA55 ff | |
// 04FB mute | |
// 4AB5 netflix | |
// 609F sling | |
// B24D hulu | |
// 3FA05 starz | |
// C03F home | |
// sleep timer | |
0x57E346b9 | |
0x57E347b8 | |
// closed captions | |
0x57E30ef1 | |
0x57E30ff0 | |
// av | |
0x57E3a45b | |
0x57E3a55a | |
// antenna | |
0x57E3d42b | |
0x57E3d52a | |
// inputs | |
0x57E3748b | |
0x57E3758a | |
// hdmi 1 | |
0x57E3847b | |
0x57E3857a | |
// hdmi 2 | |
0x57E344bb | |
0x57E345ba | |
// hdmi 3 | |
0x57E3c43b | |
0x57E3c53a | |
// game mode | |
0x57E3c639 | |
0x57E3c738 |
Hello
Can someone help me sending the IR code using arduino and IRremote library.
My understanding is to send an IR code I follow the method irsend.sendNEC (address, command)
So to send a mute command i should use irsend.sendNEC( 0x57E318E7,0x04FB)
I used it with several devices and worked fine. But for TCL tv it is not working using the above code.
Can someone help please
Hello Can someone help me sending the IR code using arduino and IRremote library. My understanding is to send an IR code I follow the method irsend.sendNEC (address, command) So to send a mute command i should use irsend.sendNEC( 0x57E318E7,0x04FB) I used it with several devices and worked fine. But for TCL tv it is not working using the above code. Can someone help please
I know i'm very late, but i found out that instead of
irsend.sendNEC( 0x57E318E7,0x04FB)
^payload^^ ^plen^
you should use
irsend.sendNEC( 0x57E304FB, 32)
Notice how i replaced the last 4 hex digits with those you found.
Pour envoyer des commandes à votre téléviseur tcl,assurez-vous que vous utilisez les bonnes adresses et commandes dans la méthode irsend.sendNEC.Assurez vous que vous utilisez le bon code pour mettre en sourdine.Dans votre message,vous avez mentionné 0x04FB pour la mise en sourdine.Vérifiez si c'est le bon code pour votre téléviseur tcl ,irsend.sendNEC(0x57E318E7, 32); Remplacez par le code correct si nécessaire
delay(2000);
How can I convert this code to IR remote with Open BK software?