Ok Dashboard gurus- I'm at a venue that currently uses Crestron to control a large bank of TVs. We've moved all of their signal routing commands over to Dashboard (they have an NK Router), and the only thing left to figure out is on/off control of their actual TVs.
The TVs in question are Planar SL4351's (Simplicity Series). I've tracked down the following information:
Serial Commands:
https://www.planar.com/media/304579/020-1244-00-simplicity-series-rs-232-manual.pdf
IP of one of the TVs: 172.22.54.157
TV Port: 5000
Based on what I'm reading (table 3.2.3 in above mentioned PDF), I should be able to send the following code to the TV to turn it off:
0xA6 0x01 0x00 0x00 0x00 0x04 0x01 0x18 0x01 0xBB
I've tried the following:
rosstalk.sendMessage('172.22.54.157', 5000, '0xA6 0x01 0x00 0x00 0x00 0x04 0x01 0x18 0x01 0xBB');
and
rosstalk.sendMessage('172.22.54.157', 5000, 'A6 01 00 00 00 04 01 18 01 BB');
to no avail.
I've also connected to the TV via Putty and sent the same commands. I receive no response from the TV no matter what I do. I'm sure it has something to do with my lack of knowledge of serial commands, but I'm not sure where to go from here...can anyone point me in the right direction? Thanks!!
Bo