Projector with two displays
Need some ideas:
I have a Sanyo PLC XT11 that can be used with a screen or smartboard and I need to in code chnge the zoom and lens shift depending on which display is chosen.
I have a Sanyo PLC XT11 that can be used with a screen or smartboard and I need to in code chnge the zoom and lens shift depending on which display is chosen.
0
Comments
BUTTON_EVENT[TP,SMARTBOARD] //select the smart board display { PUSH: { CURDISP = SMARTBOARD // current display flag for feedback // Do Zoom // Do Lens Shift } } BUTTON_EVENT[TP,PROJSCREEN] //select the projection screen { PUSH: { CURDISP = PROJSCREEN // current display flag for feedback // Do Zoom // Do Lens Shift } } DEFINE_PROGRAM [TP,SMARTBOARD]=(CURDISP=SMARTBOARD) [TP,PROJSCREEN]=(CURDISP=PROJSCREEN)