QLab scripts for Epson Pro L1755U Projector

2,041 views
Skip to first unread message

david holt

unread,
Mar 31, 2021, 2:31:25 PM3/31/21
to QLab
Does any one know the QLab command scripts to control the Epson Pro L1755U projector. Specifically looking for power on/off, shutter on/off and lens control. I haven't found anything searching the web.

aroom adub

unread,
Mar 31, 2021, 2:33:54 PM3/31/21
to 'Rich Walsh' via QLab
hello

did you try using Sigmasix app ProjectorManager (on the app store)?

you can use this script to control ProjectorManager

--this will OPEN the shutter on the first projector in the list
tell application "ProjectorManager"
AvUnMute 1
end tell


--this will CLOSE the shutter on the first projector in the list
tell application "ProjectorManager"
AvMute 1
end tell


You can see all the supported AppleScript commands via the Library in Script Editor. There aren't many though:

PowerOn v
PowerOff v
AvMute v
AvUnMute v
Inpt i v

where v is an index for the projectors configured in ProjectorManager -- 0 is all projectors, 1-n is individuals (1 at the top)

On 31 Mar 2021, at 20:31, david holt <davidle...@comcast.net> wrote:

Does any one know the QLab command scripts to control the Epson Pro L1755U projector. Specifically looking for power on/off, shutter on/off and lens control. I haven't found anything searching the web.

--
Contact support anytime: sup...@figure53.com
Follow QLab on Twitter: https://twitter.com/QLabApp
User Group Code of Conduct: https://qlab.app/code-of-conduct/
---
You received this message because you are subscribed to the Google Groups "QLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qlab+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/a9b1ae64-e7e9-4472-bc14-f812db1e4387n%40googlegroups.com.

Alexander (Mailing List) Taylor

unread,
Mar 31, 2021, 2:37:21 PM3/31/21
to ql...@googlegroups.com
Hi David,

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.

Power On:

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


On Mar 31, 2021, at 2:31 PM, david holt <davidle...@comcast.net> wrote:

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.
Does any one know the QLab command scripts to control the Epson Pro L1755U projector. Specifically looking for power on/off, shutter on/off and lens control. I haven't found anything searching the web.

--
Contact support anytime: sup...@figure53.com
Follow QLab on Twitter: https://twitter.com/QLabApp
User Group Code of Conduct: https://qlab.app/code-of-conduct/
---
You received this message because you are subscribed to the Google Groups "QLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qlab+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/a9b1ae64-e7e9-4472-bc14-f812db1e4387n%40googlegroups.com.

The Right-To-Know Law provides that most e-mail communications to or from School District employees regarding the business of the School District are government records available to the public upon request. Therefore, this e-mail communication may be subject to public disclosure.

david holt

unread,
Apr 5, 2021, 3:33:24 PM4/5/21
to QLab
Thanks, guys. I was able to get it working with ProjectorManage.
Reply all
Reply to author
Forward
0 new messages