Yamaha DPX1 Projector
George Krietsepis
Posts: 284
Hi all,
I'm trying to control a DPX1 Yamaha projector through its rs232 port but it doesn't seem to work. I have downloaded the appropriate manual from amx site and I have seen that we need to send a 'wake up' command to enable the serial port.
send_string Projector,'dpx1 comm wakeup'
I have defined this device as you can see below:
Define_device
Projector = 5001:1:0
Define_event
Data_Event[Projector]
{
online: send_command Projector,'SET BAUD 115200,N,8,1 485 DISABLE'
}
and I send the commands like this:
send_string Projector,"2,$00,'C13E',3" //POWER ON
send_string Projector,"2,$00,'C03F',3" //POWER OFF
I have already tried swapping 2 and 3 on the cable to see if the unit needs a straight through cable ( I don't think so) but nothing happened.
Have anyone of you ever controlled this device?
Thanks a lot
I'm trying to control a DPX1 Yamaha projector through its rs232 port but it doesn't seem to work. I have downloaded the appropriate manual from amx site and I have seen that we need to send a 'wake up' command to enable the serial port.
send_string Projector,'dpx1 comm wakeup'
I have defined this device as you can see below:
Define_device
Projector = 5001:1:0
Define_event
Data_Event[Projector]
{
online: send_command Projector,'SET BAUD 115200,N,8,1 485 DISABLE'
}
and I send the commands like this:
send_string Projector,"2,$00,'C13E',3" //POWER ON
send_string Projector,"2,$00,'C03F',3" //POWER OFF
I have already tried swapping 2 and 3 on the cable to see if the unit needs a straight through cable ( I don't think so) but nothing happened.
Have anyone of you ever controlled this device?
Thanks a lot
0
Comments
Instead of:
send_string Projector,"2,$00,'C13E',3" //POWER ON
try:
send_string Projector,"$02,$00,$C1,$3E,$03"
Danny
What about a response to the wake up command? The manual says you should get a $06 back if it is successful. If you're not even getting that back, I wouldn't expect anything else you send to work.
It was nice of them to point out the pin-out for the 232 connector, wasn't it? What type and gender port is on the projector?
- Chip
Danny, I sent the command as you told me but nothing happend...
Chip, the truth is that when I'm sending the 'wake up' command, the projector does not send back any reply. The projector rs232 connector is a male 9-pin one.
Is there any case of using the handshaking function (CTS and RTS) regardless of what the manual says?
George
And no, if you have a cable handy that's wired 2-3, 3-2, 5-5, 7-8, 8-7, trying a "HSON" command to that com port couldn't hurt for testing purposes.
- Chip
there is no way to check if the baud rate is 115200. The manual says that this is the default but I have tried and some others too. I have already sent some IR commands but there was not any reply from the NI rs232 Rx port, that is from Projector serial port.
Chip,
so you suggest me to use an other cable with that pins, right?
George
I would connect the projector to my PC with a null-modem cable and use something like hyperterminal to attempt to send it the wake-up string. You can vary the baud rate starting with 115200 and work down to see if the thing will ever respond.
I've also used a program called RS232 Hex Com Tool that you can download from www.viddata.com. The demo version will only run for 5 minutes, but that should be enough to see if the projector will respond.
Danny