使用PJLinkClient类连接到PJLink设备并发送命令: classProgram{staticvoidMain(string[] args){stringipAddress ="192.168.1.100";// 替换为你的PJLink设备的IP地址intport =9100;// 替换为你的PJLink设备的端口PJLinkClient pjLinkClient =newPJLinkClient(ipAddress, port); pjLinkClient.Connect();// 发送一些命令p...
python import socket # 投影仪的IP地址和端口(PJLink标准端口为4352) ip_address = '192.168.1.100' port = 4352 # 创建一个socket对象 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # 连接到投影仪 s.connect((ip_address, port)) # 发送关机命令 command = 'pjlink 0\rpower off\r' s.s...
需要测试可以打开 “”软件,创建一个客户端用于给中控发送数据触发”NetPORT” ,并填写要触发的JionNmber编号,例如需要触发JionNmber1就发送十六进制1b 43 dd 0d 0a 01 00 80 1b 43 dd 0d 0a 01 00 00,这里为了下次触发,触发的同事又清楚了已经触发的JionNmber。创建一个服务器用于接收中控发出的字符串。
Port name pj link TCP 4352 port To operate multiple proj ectors, the CONTROLLER creates a TCP/IP session per proj ector. The CONTROLLER identifies each proj ector by its IP address. The CONTROLLER controls the proj ector by sending PJLINK commands. Upon receiving a command, the proj ector ...
这个工具主要是利用电脑的串口作为发送端口控制周边设备。可以投影机,可以是继电器,可以是功放。 软件所有配置都存在配置文件中,使用的是linux的配置方式。 本次改版具有更丰富的串口配置信息。详细信息如下。 portname=COM1 ;窗口名称,注意需要使用大写 baudrate=38400 ;频率 databits=8 ;数据位 parity=None ;奇偶...
If I create a TCP/IP output communication, with the correct IP and Port and then create a command 00osh:1$0D I have to "play" it 3 times before getting it work. at the 3rd time i play that command and only at every 3rd time, it works. I tried to control another device: a pow...
(string passwd);//password for PJLink authenticationboolgetProjectorStatus();//return whether projector is on (true) or off (false)voidsetProjectorPort(intport);//the network port of the projectorboolsendCommand(string command);//send any string command to the projector without password ...