Mitsubishi Television RS-232 woes
kmkorf
Posts: 19
Hey folks,
I've been beating my head today to get a Mitsubishi WL-82913 to respond to serial control commands. I have verified all my code and have even connected directly to the TV with my PC. I have verified the wiring and that the TX and RX lines are crossed appropriately with a test device. It appears the the serial lines are getting power from the TV. Connection wise, everything looks good. When I send a string to the TV, I get no response at all, not even any error messages. It didn't matter weather it was the NI-4000 or my PC that was issuing the commands.
We do not normally sell Mitsubishi TVs (but we have used their projectors with no issues) so I was hoping I've just overlooked something in the garbled menus in the TV. It seems to just be ignoring all communications from the serial ports.
I have a call into Mitsubishi that has been escalated to their second tier support but I have to wait 1-2 business days from the day following my call before they call me back. Given I called them today, my 1-2 day waiting peroid will start from Monday so I won't get any info from them until at least Tuesday or Wednesday next week. Hopefully someone has faced this before and can respond quicker than Mitsubishi.
Thanks,
Kurt Korfhage
Simplified Technologies
I've been beating my head today to get a Mitsubishi WL-82913 to respond to serial control commands. I have verified all my code and have even connected directly to the TV with my PC. I have verified the wiring and that the TX and RX lines are crossed appropriately with a test device. It appears the the serial lines are getting power from the TV. Connection wise, everything looks good. When I send a string to the TV, I get no response at all, not even any error messages. It didn't matter weather it was the NI-4000 or my PC that was issuing the commands.
We do not normally sell Mitsubishi TVs (but we have used their projectors with no issues) so I was hoping I've just overlooked something in the garbled menus in the TV. It seems to just be ignoring all communications from the serial ports.
I have a call into Mitsubishi that has been escalated to their second tier support but I have to wait 1-2 business days from the day following my call before they call me back. Given I called them today, my 1-2 day waiting peroid will start from Monday so I won't get any info from them until at least Tuesday or Wednesday next week. Hopefully someone has faced this before and can respond quicker than Mitsubishi.
Thanks,
Kurt Korfhage
Simplified Technologies
0
Comments
http://www.mitsubishi-tv.com
The codes are pretty straight forward, doesn't appear to be anything to odd. I just read the manual and ditto for it also. They say that the monitor/rs-232 connector is auto-detecting between the two, is there anywhere in the OSD that allows it to be forced?
Huh, that's strange. You mean you get 12V between either Rx or Tx and GND? If you do, then there is no wonder it does not work, as obviously the voltage difference is used by the serial port hardware to detect data going though. (sorry if this is obvious, just trying to help).
Have you checked your cable between with another devices? It could be shortcutted some place (again, obvious but it is so often the cable...)
Otherwise same comment as the other, except for the ODD parity, there's nothing that special in the protocol.
Hope this helped
Fred
There is no 12V power in the system. If one of the serial devices is not powered then there is no way to get both of the Red LEDs to light on the tester.
I read the manual as defining a straight through connection. NOT a crossover cable.
Easy to miss.
Thanks,
The cable looks like it should be standard null modem with only pins 2, 3, & 5.
amx
mitsu
2
3
3
2
5
5
EDIT:
Just noticed this text in their manual, which i think may be incorrect because it doesn't jive with their pinout:
Wire the cable so that each pair of data lines is straight between the two devices. These data line pairs are RXD
(Receive data) and TXD (Transmit data.).
I will say that I have not tried to use flow control in any of my dinking so I may give that a whirl.
To all who were apart of this thread. -->kmkorf - have you come to a soultion to control this unit. I am going to a location tomorrow to program a NI-3000 which will be controlling 2 of the Misubishi WL-82913. If you have, I was wondering if I could see the portion of the code used to control the unit to make sure I am formating my string correctly. Thank you to all,
Jairo Martinez
AMX Programmer
Newcome Electronic Systems
Columbus, Ohio
Jairo,
Unfortunately I threw in the towel on this one and we ended up installing an IR flasher inside the actual television while we had it apart for transport to the customers residence. The sensor is actually located through the front screen like most projections televisions of this type. Good luck on your quest.
Regards,
Kurt Korfhage
Managing Partner
Integration Unlimited
ACE Certified Programmer/Designer
Forum Thread Group:
I was able to do basic control of the Mitsubishi WL-82913. It took abit to get the command structure right. As mention by another member of this forum, the 232-manual is poorly written and not accurate is some respects.
I was able to turn the unit "ON" and "OFF" as well as pole to see what the power state was:
ON = "$DF,$80,$70,$F8,$02,$00,$00,$36"
OFF = "$DF,$80,$70,$F8,$02,$00,$01,$35"
Power Status = "$DF,$80,$70,$F8,$02,$00,$80,$B6"
Reply ON = $7F,$70,$80,$F8,$04,$00,$80,$00,$01,$13"
Reply OFF = "$7F,$70,$80,$F8,$04,$00,$80,$00,$02,$12"
Of course, I am having issues switching inputs at this time. I hope to have that figured out soon and will update this post with that data.
Jairo Martinez