Control Panasonic projector via IP
MC2
Posts: 11
Hi,
I'm trying to control a Panasonic beamer via IP.
Using the PJlink protocol ... I'm able to control the Pana beam via IP.
Their RS232 protocol is sooo simple.
But for 1 or other reason it's not so smooth for me via IP ... grrrrr
Someone succeeded to do this ?
Prepared to share the string sent to the device ?
fyi ...
1. passwords are disabled on the pana beam
2. I control many many other devices via ip, so I'm not a newbie
Many tx in advance !
Mike
I'm trying to control a Panasonic beamer via IP.
Using the PJlink protocol ... I'm able to control the Pana beam via IP.
Their RS232 protocol is sooo simple.
But for 1 or other reason it's not so smooth for me via IP ... grrrrr
Someone succeeded to do this ?
Prepared to share the string sent to the device ?
fyi ...
1. passwords are disabled on the pana beam
2. I control many many other devices via ip, so I'm not a newbie
Many tx in advance !
Mike
0
Comments
Try this
Tx Bruno for that module.
Did you attached it as a hint to use MD5 ?
The PJlink works and is very easy to implement.
Example ...
IF(!PROJ_STS_IP) IP_CLIENT_OPEN (DV_PROJ.PORT,IPADDRESS,4352,IP_TCP)
WAIT_UNTIL(PROJ_STS_IP) SEND_STRING DV_PROJ,"$25,$31,$49,$4E,$50,$54,$20,$31,$31,$0D"//RGB1
But as Marc mention ... no auto adjust, aspect ratio, ... and some other interesting functions.
Grtz
Mike
Control via IP of the Panasonic projector range, is the port 1024 as mentioned in the panasonic network booklet or 4352 as detailed in the above post, anybody know for sure as doing a panasonic next week over IP.
PJlink has only basic functions.
Imo a bit stupid to foresee a IP/RS232 gateway (Extron, Global Caché iTach, ...) to have full control.
I have controlled both Panasonic projectors and plasma's with the Moxa NPort5110. Worked rather well. Only problem that I had was the return strings were a bit off, I had to look at them all in hex. I just did a watch and adjusted to what I got back. Pretty easy set-up and nice to not have to run long 232 cables or a axb-232 box with axlink. Just set up client/server communication and then just send normal 232 strings.
Jeff
ip_client_open (10,'192.168.40.3',1024,1)
}
define_call 'pana on' {
//send_string dvbeamer, "$02,'ADZZ;PON',$03"
call 'beamer connect' // needs to reconnect every time ...
send_string dvbeamer, "'00PON',13" // every command disconnects the beamer
}
define_call 'pana off' {
//send_string dvbeamer, "$02,'ADZZ;POF',$03"
call 'beamer connect'
send_string dvbeamer, "'00POF',13"
}
define_call 'pana shutter on' {
call 'beamer connect'
send_string dvbeamer, "'00OSH:1',13"
}
define_call 'pana shutter off' {
call 'beamer connect'
send_string dvbeamer, "'00OSH:0',13"
}
define_call 'pana rgb1' {
call 'beamer connect'
send_string dvbeamer, "'00IIS:RG1',13"
}
define_call 'pana rgb2' {
call 'beamer connect'
send_string dvbeamer, "'00IIS:RG2',13"
}
define_call 'pana video' {
call 'beamer connect'
send_string dvbeamer, "'00IIS:VID',13"
}
define_call 'pana svideo' {
call 'beamer connect'
send_string dvbeamer, "'00IIS:SVD',13"
}
define_call 'pana dvi' {
call 'beamer connect'
send_string dvbeamer, "'00IIS:DVI',13"
}
define_call 'pana sdi' {
call 'beamer connect'
send_string dvbeamer, "'00IIS:SDI',13"
}
define_call 'pana query shutter' {
call 'beamer connect'
send_string dvbeamer, "'00ADZZ;QSH',13"
}
define_call 'pana query input' {
call 'beamer connect'
send_string dvbeamer, "'00QIN',13"
}
define_call 'pana query power' {
call 'beamer connect'
send_string dvbeamer, "'00QPW',13"
}
define_call 'pana query lamp1' {
call 'beamer connect'
send_string dvbeamer, "'00Q$L:1',13"
}
define_call 'pana query lamp2' {
call 'beamer connect'
send_string dvbeamer, "'00Q$L:2',13"
}
define_call 'pana query lampstatus' {
call 'beamer connect'
send_string dvbeamer, "'00AQ$S',13"
}
HTH
Alexander
but security is what prevents the projector from communicating with the standard RS-232 module over IP.
Use the web control page and set the password to nothing.. then the security will not apply on NT control or PJLink control.
default username password is admin1/panasonic.
i also open the port manually, as the module didn't seem to do the right job. will do some more verification on that side yet.
stealing your MD5 sum function. Thanks.
It was easier than walking out to where the projector is and deleting the password.
you didn't have to walk, it can be done from the browser
When you tell it to stand-by over PJlink, it turns off the NIC. Um, I think I might need to turn it back on over the network too, guys.
edit: found the eco setting and turned it off.
There is no direct HDMI support in the module, so I use a pass thru command of
send_command vdvPanasonicPTDW730S,"'PASSTHRU-IIS:HD1'"
Once I removed the password, this module works fine. Power On is good from Standby.
edit: just saw your eco mode edit.. yes, that did get me as well. It must be off for the ethernet port to remain live.