I have a similar Epson Laser projector in my venue, and I control it with PJLink. I believe it is also controllable via Serial and ART-Net.
Here’s what I have in my Script cue to send PJLink.
use AppleScript version "2.4" -- Yosemite (10.10) or later
use scripting additions
set EscapeChr to ASCII character 29
set telnet to "/usr/local/bin/telnet -NK4c 10.10.190.200 4352"
set powerCommand to "echo %1POWR 1"
set blankEcho to "echo "
set quitEcho to "echo quit"
set theScript to "{ " & powerCommand & "; sleep 0.2; echo " & EscapeChr & "; " & blankEcho & "; " & quitEcho & "; } | " & telnet & " &> /dev/null"
do shell script theScript
Power Off:
use AppleScript version "2.4" -- Yosemite (10.10) or later
use scripting additions
set EscapeChr to ASCII character 29
set telnet to "/usr/local/bin/telnet -NK4c 10.10.190.200 4352"
set powerCommand to "echo %1POWR 0"
set blankEcho to "echo "
set quitEcho to "echo quit"
set theScript to "{ " & powerCommand & "; sleep 0.2; echo " & EscapeChr & "; " & blankEcho & "; " & quitEcho & "; } | " & telnet & " &> /dev/null"
do shell script theScript
You can look up PJLink commands to substitute.
Alexander
Caution - This email is from outside ORCSD. Do not click links or open attachments unless you recognize the sender and know the content is safe.