PANASONIC TH-50PH11UK && MIO-PRESTIGE S
playskool1
Posts: 64
i am working with a Panasonic TH-50PH11UK LCD and a AMX MIO-PRESTIGE S keypad.
i am having trouble ramping up volume and ramping down volume. it is not repeating. also the feedback light on keypad buttons do not light up.
i am having trouble ramping up volume and ramping down volume. it is not repeating. also the feedback light on keypad buttons do not light up.
BUTTON_EVENT[dvKP_229,6] { PUSH: { SEND_STRING dvLCD2,"$02,'AVL**',$03" //LCD VOL + } } BUTTON_EVENT[dvKP_229,7] { PUSH: { LCDmute = !LCDmute SEND_STRING dvLCD2,"$02,'AMT1',$03" //LCD MUTE } } BUTTON_EVENT[dvKP_229,8] { PUSH: { SEND_STRING dvLCD2,"$02,'AVL**',$03" //LCD VOL - } }
0
Comments
A volume up for the Panasonic is $02,'AUU',$03 that will ramp it up one point
volume down is $02,'AUD',$03
so one option would be:
if you want it to repeat - put in a hold statement
I like to add one thing so that the button can be pushed once fora single pulse and held longer for multiple pulses:
Ditto for the down
You don't have any feedback commands, depending on how you want your feedback to occur there are many ways to code it, you could just add a TO[button.input] to each push
got that down.
now my only issue is controlling the PANASONIC TH-50PH11UK. i checked the AMX NI-3100 and the TX and RX blink together so i know my RS232 control is working fine. is there something i am missing on my command/parameters? the only buttons on the MIO PRESTIGE S Keypad that work are buttons 3 & 4. Button 2, only the audio works but no video.
i think i figured out the mute toggle using both parameters.