OK, I've got the codes for all the icons too:
so this is a little command list to control the display 00 8B 04 01 07 xx xx xx xx xx xx xx -> where xx are the ASCII codes of the seven characters to display 00 85 02 01 aa ss -> where aa is the code of the icon and ss is the state (00=off, 01=on) 00 85 02 02 a1 s1 a2 s2 -> a1 s1 = code and state of the first icon, a2 s2 = code and state of the second icon 00 85 02 nn a1 s1 a2 s2 .... an sn -> where nn is the number of icon values present in the buffer and then a couple of bytes for every icon to set with icon number in the first byte and state in the second one
so here's the icon numbers list:
01 = VOLUME icon
02 to 0C = volume bars
0E = SHUFFLE icon
0F = MUTE
10 = PHONE
11 = REC
12 = RADIO
13 = DVD
14 = VCD
15 = CD
16 = MUSIC
17 = PHOTO
18 = TV
19 = cd/dvd disk icon
1A = 5.1 icon
1B = 7.1 icon
1E = REPEAT icon
1F = ALL icon
20 = REW
21 = PAUSE
22 = PLAY
23 = TIMER
24 and 25 = GUIDE (double led)
26 = HOME
28 = eject icon
29 = FWD
2A = KHz
2B = MHz
so this will be the buffer to lit the REC icon
00 85 02 01 11 01
and this to turn off rec icon
00 85 02 01 11 00
every sent buffer has to be filled with 00 after the command to reach 65 bytes.
P.S...all the numbers are in HEX notation
Last edited by andreavb; 2007-09-09 at 18:07.
|