Nov 06 2023 12:38 AM
Hi Everyone!
I have been working on a script to turn on or off a epson projector EB982W, with no luck.
They say in there documentation that they support esc/VP21 commands and the command to power on/off are PWR ON or PWR OFF.
more info can be found at this link:
https://files.support.epson.com/pdf/pltw1_/pltw1_cm.pdf
I found a blog on stackoverflow:
that specifies how to open a port and send commands with powershell as so:
$port = new-Object System.IO.Ports.SerialPort COM4,19200,None,8,one
$port.open()
$port.WriteLine("<command>")
I have also tried $port.Write("<command>")
the port opens successfully but the commands are not received by the projector.
I would like to note that I have successfully sent commands with mobaxterm, proving that there is no hardware problem etc.
Does anyone have any experience with this, direction, solution or advice.
I have already taken advice from numerous people without any success
Nov 12 2023 08:21 AM - edited Nov 12 2023 08:21 AM
The documentation you linked to says you need to use the following port settings:
Select RS-232C at Advanced Setting of the Menu.
And make sure you serial cable is a cross-over cable (2->3, 3->2) not straight through.
Nov 13 2023 03:54 AM