Need IP code advice for Panasonic Projector - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: Need IP code advice for Panasonic Projector (/showthread.php?tid=888) |
Need IP code advice for Panasonic Projector - rofredi - 04.07.2017 I am trying to write serial code for a Panasonic PT-DZ13KU projector. I have tried the following variations to turn the projector ON to no effect: 30 30 70 6f 77 72 31 0d (ascii = "00powr1\0d") and 25 31 50 4f 57 52 20 31 0d (ascii = "%1POWR 1\0d") These commands generate at "ERR1" error message. Any ideas? Thanks! RE: Need IP code advice for Panasonic Projector - Erwin van der Zwart - 04.07.2017 Hi, Try to use: string.char(0x30, 0x30, 0x70, 0x6f, 0x77, 0x72, 0x31, 0x0d) BR, Erwin |