SONY 232
jackygross
Posts: 10
Anyone has a sample of how to use the 232 KDL protocol?
I'm not familiar with the checksum method
trying to control power on/off
input switching
Aspect modes
Help is greatly appreciate it
thanks
I'm not familiar with the checksum method
trying to control power on/off
input switching
Aspect modes
Help is greatly appreciate it
thanks
0
Comments
I'm confident that this would work. If someone else has a functioning code block hopefully they'll post it for you but this should get you started in the meantime.
--John
Here's the code I'm using, you can just drop this in an include file (the Structure for the Sony vars is not defined here) and reference the channel event for on/off:
Sony_Command[2]= "$8C,$00,$00,$02,$00,$8E" //POF
Sony_Command[3]= "$8C,$00,$01,$02,$01,$90" //Standby ON
Sony_Command[4]= "$8C,$00,$01,$02,$00,$8F" //Standby OFF
Sony_Command[5]= "$8C,$00,$02,$03,$05,$01,$97" //RB1
Sony_Command[7]= "$8C,$00,$02,$03,$02,$01,$94" //VID1
Sony_Command[8]= "$8C,$00,$02,$03,$02,$02,$95" //VID2
Sony_Command[9]= "$8C,$00,$02,$03,$02,$03,$96" //VID3
You need to send standby on before turning off the KDL or you will not be able to turn it back on.
$FF + $FF = $01,$FE $FE is the least significant byte.
J
I post this reply so that others do not waste as much time on this as I have.