Schneider Electric SpaceLogic KNX forum to get support and share knowledge including selection, installation and troubleshooting for spaceLYnk, Wiser for KNX, eConfigure KNX, SpaceLogic KNX Hybrid module and other topics.
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Link copied. Please paste this link to share this article on your social media post.
2 weeks ago
PJLink for Projector Control
Hi
I'm trying to control Projector using PJLink and SpaceLYnk or Wiser for KNX?
Found this script but I'm not fluent in scripting and PJLink. Is there way to modify script to get live status of projector as a group address?
require('socket')
value = event.getvalue()
ip = '192.168.1.5'
port = 4352
if value == 1 then
cmd = '%1POWR 1\r\n'
else
cmd = '%1POWR 0\r\n'
end
sock = socket.tcp()
sock:settimeout(1)
res, err = sock:connect(ip, port)
if res then
res, err = sock:send(cmd)
if res then
alert('Send OK')
else
alert('Send failed: %s', tostring(err))
end
else
alert('Connect failed: %s', tostring(err))
end
Link copied. Please paste this link to share this article on your social media post.
2 weeks ago
Hi Piotr! I assume that your shared script is already working to switch the projector On/Off ... or? So, of course it is not easy to create/test a script without having the dedicated device next to you.
Based on the shared script I made trial 😉 Please let me know if it works, not works, updates needed etc..