Plasma FWD-42 Sony
nicola@tv3.it
Posts: 7
Hi,
Can you help me!!!
I control a Plasma Sony FWD-42PV1 in rs-232, for control power and input with feedback i don't have problem, but
How I can control a volume up and down with feedback in the plasma sony? with a AXT-CP pannel
I would control volume up and down with a button and see a feedback in the bargraph
Command Format
1 Header
2 Category
3 Fuction
4 Data1(Length)
5 Data2(Data1)
Check Sum
Check Sum: The total from ?1 to ?5, when value exceeds 255, 1byte of data is confirmed the bottom.
Volume Command Data
command control "$8c,$10,$30,$02, $00-$64 ,check sum"
command enquiry "$83,$10,$30,$ff,$ff,check sum"
thanks for your help
Can you help me!!!
I control a Plasma Sony FWD-42PV1 in rs-232, for control power and input with feedback i don't have problem, but
How I can control a volume up and down with feedback in the plasma sony? with a AXT-CP pannel
I would control volume up and down with a button and see a feedback in the bargraph
Command Format
1 Header
2 Category
3 Fuction
4 Data1(Length)
5 Data2(Data1)
Check Sum
Check Sum: The total from ?1 to ?5, when value exceeds 255, 1byte of data is confirmed the bottom.
Volume Command Data
command control "$8c,$10,$30,$02, $00-$64 ,check sum"
command enquiry "$83,$10,$30,$ff,$ff,check sum"
thanks for your help
0
Comments
I know this is ugly but maybe it is a start point for you (one of those times when they say "O by the way you need to control volume and you have an hour to do it").
this is for a NEC so you be able to just change the Hex string in the code below.
Button_Event [vdvTP,232] //Plasma 1 VOL UP
{
HOLD[2,REPEAT]:
{
PLAS1VOLLEV = COUNTERLEV1
PLAS1CKSUM = COUNTERSUM1
Send_String dvPlas1,"$DF,$80,$60,$7F,$03,$05,$01,(PLAS1VOLLEV),(PLAS1CKSUM)"
PLAS1DISPLEV = (PLAS1DISPLEV + 1)
COUNTERLEV1 = (COUNTERLEV1 + $01)
COUNTERSUM1 = (COUNTERSUM1 + $01)
}
}
Button_Event [vdvTP,233] //Plasma 1 VOL DN
{
HOLD[2,REPEAT]:
{
PLAS1VOLLEV = COUNTERLEV1
PLAS1CKSUM = COUNTERSUM1
Send_String dvPlas1,"$DF,$80,$60,$7F,$03,$05,$01,(PLAS1VOLLEV),(PLAS1CKSUM)"
PLAS1DISPLEV = (PLAS1DISPLEV - 1)
COUNTERLEV1 = (COUNTERLEV1 - $01)
COUNTERSUM1 = (COUNTERSUM1 - $01)
}
}
and in mainline:
SEND_LEVEL vdvTP,2,PLAS1DISPLEV
thanks thousand for the help
and to good to make
PLAS1VOLLEV
COUNTERLEV1
PLAS1CKSUM
COUNTERSUM1
This is a variable and so I define in define_variable!?!
Because I don't understand how the clac cheksum a volume up and down they work..
Thanks so much