Samsung Plasma ON/OFF commands
prakash
Posts: 33
I am trying to power ON and OFF a Samsung Plasma using these commands
SEND_STRING dvPlasma,"$AA,$11,$01,$01,$01,14" //Power ON
SEND_STRING dvPlasma,"$AA,$11,$01,$01,$00,13" //Power OFF
I am taking display ID as 01...from where can we check the display id?
SEND_STRING dvPlasma,"$AA,$11,$01,$01,$01,14" //Power ON
SEND_STRING dvPlasma,"$AA,$11,$01,$01,$00,13" //Power OFF
I am taking display ID as 01...from where can we check the display id?
0
Comments
RS232: 9600,8,N,1 cable: 1:1
Header = $AA
Command = $11
ID = $FF [id = 0]
Checksum = command+data length+data 1
If checksum is more then 2 digits, take the last 2 digits
Calculate checksum = 112, checksum = 12
Power ON
$AA,$11,$FF,$01,$01,$12
Power OFF
$AA,$11,$FF,$01,$00,$11
Get Power Status
$AA,$11,$FF,$00,$10