Projector states feedback
espen.sandorf
Posts: 29
Hi!
I want to know if the projector is on,off,warming or coolig, following is a cutout from the duet module interface spesification. I have tried to write this in several ways but it wont work. Could anyone help me on how i should use this to know what state the projector is in.
253
ON: Projector Warming On ? provides feedback only
OFF: Projector Warming Off
Please Note: When channels 253 and 255 are on, then the projector is in warming mode. When channel 253 is off, then the projector is not in warming mode.
254
ON: Projector Cooling On ? provides feedback only
OFF: Projector Cooling Off
Please Note: When channels 254 and 255 are on, then the projector is in cooling mode. When channel 254 is off, then the projector is not in cooling mode.
ON: Set Lamp Power On ? used for feedback also
OFF: Set Lamp Power Off
255 ON: Set Lamp Power On ? used for feedback also
OFF: Set Lamp Power Off
I want to know if the projector is on,off,warming or coolig, following is a cutout from the duet module interface spesification. I have tried to write this in several ways but it wont work. Could anyone help me on how i should use this to know what state the projector is in.
253
ON: Projector Warming On ? provides feedback only
OFF: Projector Warming Off
Please Note: When channels 253 and 255 are on, then the projector is in warming mode. When channel 253 is off, then the projector is not in warming mode.
254
ON: Projector Cooling On ? provides feedback only
OFF: Projector Cooling Off
Please Note: When channels 254 and 255 are on, then the projector is in cooling mode. When channel 254 is off, then the projector is not in cooling mode.
ON: Set Lamp Power On ? used for feedback also
OFF: Set Lamp Power Off
255 ON: Set Lamp Power On ? used for feedback also
OFF: Set Lamp Power Off
0
Comments
one attempt:
DEFINE_PROGRAM
[vdvProj,253] = vProjWarming
Another attempt:
CHANNEL_EVENT[vdvProj,255]
{
ON:
{
vProjLampOn=1
}
OFF:
{
vProjLampOn=0
}
}
CHANNEL_EVENT[vdvProj,253]
{
ON:
{
vProjWarming=1
}
OFF:
{
vProjWarming=0
}
}
--John