Cherche codes Hexadécimaux et autres pour K8049

Bonjour, pour faire un montage récepteur décodeur à base d’Arduino, autour de la télécommande infrarouge K8049 Velleman , je cherche depuis quelques jours, une liste des codes (valides) hexadécimaux, décimaux ou autres correspondant aux (2x8 avec shift) touches de cette télécommande.

Tous les sketchs que j’ai pu essayer pour afficher les codes de la K8049 affichent soit protocole inconnu, soit FFFFFFFF…alors que pour bon nombre d’autres modèles de télécommandes (RC5, NEC…) j’obtiens des informations exploitables.

Merci

Hello @FB24 ,

Mey this can help you further,

this table contains the codes for every channel
first six bits are code, last two are dummy bits

						B'10001000'			;1
						B'10001100'			;2
						B'00001000'			;3
						B'00001100'			;4
						B'01000000'			;5
						B'01001100'			;6
						B'00010000'			;7
						B'01000100'			;8
						B'01001000'			;9
						B'01010000'			;10
						B'00100100'			;11
						B'00110000'			;12
						B'00100000'			;13
						B'00101000'			;14
						B'00101100'			;15
						B'00000100'			;16 (this will be 'all clear')

the codes for the control of the K4100/K4500 start here
when shift is pressed, the first 8 channels of the K6711
can be controlled aswell.

						B'00101100'			;1 MUTE
						B'00000100'			;2 POWER
						B'00101000'			;3 VOL UP
						B'10010000'			;4 PRESET UP
						B'00100000'			;5 VOL DOWN
						B'10001000'			;6 PRESET DOWN
						B'00001100'			;7 SOURCE
						B'10000100'			;8 SEEK
						B'10001000'			;9 OUTPUT 1
						B'10001100'			;10 OUTPUT 2
						B'00001000'			;11 OUTPUT 3
						B'00001100'			;12 OUTPUT 4
						B'01000000'			;13 OUTPUT 5
						B'01001100'			;14 OUTPUT 6
						B'00010000'			;15 OUTPUT 7
						B'01000100'			;16 OUTPUT 8

B Stands for binary. You can convert it to HEX via the conversion tool such as “windows calculator” in programmer mode.

Best Regards,
Velleman Support

Bonjour; Merci pour vos précisions. Je n’obtiens toujours pas la reconnaissance du protocole utilisé. Celà provient de la bibliothèque IRremote (non modifiable) utilisée avec l’Arduino qui n’intègre pas le code Velleman. Cela n’est pas un gros problème, j’utilise d’autres télécommandes qui sont reconnues par IRremote une fois les codes hexadécimaux des touches renseignés. Point positif, d’avoir cherché cela permis de renforcer ma compréhension. Merci et bonne suite à tous.