This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

PJLINK to Panasonic Projector
#2
Event script mapped to binary on/off object:
Code:
123456789101112131415161718192021
value = event.getvalue() and 1 or 0 sock = require('socket').tcp() cmd = '%1POWR ' .. value .. '\r' sock:settimeout(1) res, err = sock:connect('192.168.1.98', 4352) if res then   res, err = sock:receive(9)   if res and res == 'PJLINK 0\r' then     sock:send(cmd)     res, err = sock:receive(10)     log('receive reply', res, err)   else     log('receive init failed', res, err)   end else   log('connect failed', err) end sock:close()
Result and any errors will be visible in Logs tab. You can remove log() calls if everything is working correctly.
Reply


Messages In This Thread
RE: PJLINK to Panasonic Projector - by admin - 22.04.2020, 14:55
RE: PJLINK to Panasonic Projector - by admin - 22.04.2020, 15:33
RE: PJLINK to Panasonic Projector - by admin - 10.06.2021, 12:46
RE: PJLINK to Panasonic Projector - by admin - 11.06.2021, 10:12

Forum Jump: