Home AMX User Forum AMX General Discussion

trouble controlling a Dell 4310WX projector

Here I was thinking that this would be easy. All I'm doing is turning the stupid thing on and off.


BUTTON_EVENT[dvTOUCH,150]  // Power Room On
{
    PUSH:
    {
   SEND_STRING dvProj,"$be,$ef,$10,$05,$00,$c6,$ff,$11,$11,$01,$00,$01"
    SEND_STRING dvPlasmaF,"'mpo0001',$0D"
    SEND_STRING dvPlasmaR,"'mpo0001',$0D"
    }
}
BUTTON_EVENT[dvTOUCH,151]  // Power Room OFF
{
    PUSH:
    {
    SEND_STRING dvProj,"$be,$ef,$10,$05,$00,$0c,$3e,$11,$11,$01,$00,$18"
    SEND_STRING dvPlasmaF,"'mpo0000',$0D"
    SEND_STRING dvPlasmaR,"'mpo0000',$0D"
    }
}




The correct (or what I feel is correct) string is being sent to the projector when I emulate the button push, and I receive a response. I do get back a much longer string than what is indicated in the manual. Any help is greatly appreciated.

-TK
Sign In or Register to comment.