Panasonic VProj Warming & Cooling Status
Sensiva
Posts: 211
Panasonic Projector PT-D3500 has a duet module in InConcert, this module can detect if the projector is in warming or cooling cycle, although I didn't find a query command for this in Panasonic protocol documentation, I tried to create a buffer for this device to see what strings are being parsed by the module.... the buffer is always empty
I just don't like the idea of using the module (Compiled size 1.46MB) just to get status of Warming and cooling status. Is there an undocumented commands for them??
Any ideas?
I just don't like the idea of using the module (Compiled size 1.46MB) just to get status of Warming and cooling status. Is there an undocumented commands for them??
Any ideas?
0
Comments
I've only tried to do this once and I think it worked. Look in the word doc for this device and see if "passback" is supported.
The sample TP design with this module has the option to set the warming and cooling periods, and also query them... Are you sure these are not set into the projector??
if there is no passback can I do this??
No. If there's no "passback" your out of luck.
You are just telling the module how long to expect the cooling to take.
If possible, I would encourage you to wite your own module for this projector. The Duet module is way big and clumsy.
Thank you, I found something in the manual about PJLink,
I will try it out and keep you informed
Vining, allow me to check DATA_EVENT code, coz I can't find a reason why it shouldn't work
Thanks
this should be used to check the state of the lamp.
these are the replies:
(* Projector power is off *)
ACTIVE(FIND_STRING(DATA.TEXT,"$02,'000',$03",1)):
{}
(* Projector power is on *)
ACTIVE(FIND_STRING(DATA.TEXT,"$02,'001',$03",1)):
{}
as far as i know there isn't any warming/cooling state, like a Sharp projector has...
"$02, 'Q$S', $03"
the projector will respond with one of the following
"$02, '0', $03" //lamp is off
"$02, '1', $03" //lamp has started
"$02, '2', $03" //lamp is on
"$02, '3', $03" //lamp is cooling
This is the case with at least the following models:
PT-F100
PT-LB60U
PT-D10000U
Two things to note -
* First, there is one quirk about the "lamp started" and "lamp on" feedback. If you query the projecor status every few seconds, the "lamp started" query response is issued once when the projector is started, then "lamp on" is issued even if it is still warming. If I see the "lamp started" feedback I wait 38 seconds (I must have timed it?) then set my status to "projector on". The "off" and "cooling" feedback works properly - "cooling" is issued by the projector until the lamp is off, then "off" is issued.
Second, Panasonic feedback does not indicate what command it is responding to. If you query shutter status
"$02, 'QSH', $03"
it responds with
"$02, '0', $03" //shutter open
"$02, '1', $03" //shutter closed
(same as lamp status query response)
So assuming you query more than just the power, it is up to you to track what command you have sent in order to properly process the feedback.
This is what I found out once I connected the NI serial port (loaded with Projectors duet module) and looked at the sent strings using Hyperterminal, though it is not documented in Panasonic Protocol PDF.
Yeah... actually it is very annoying... why didn't they just add a header indicating what is this value for... this is how their Plasma's protocol already does .... QPW--> PON
Anyway.. I tried PJLink which is perfect... since I love IP control links, but projector security should be disabled, otherwise a MD5 encryption is required to login into PJLink.
I dont know why they are making it difficult to login into a PJLink session... as if I am logging into FPIs presentation facility.
This is lighting up a new question... Is there a way to get MD5 encryption of string using a NetLinx pre written function, not Java... cause I am still not comfortable with duet... and I don't think I would be
PON // poweron
POF //poweroff
QPW // query power - result on or off only
IIS // change source
QSL // query 1 lamp 2 lamps etc
LPM // set 1 lamp 2 lamps etc
and QLP query lamp power
Nothing else is listed.
No mention of warming or cooling. I wrote mt way around it - and the timings appear consistent at least.