![]() |
|
RS232 - HD Mediaplayer ProCLD 750 - Printable Version +- LogicMachine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: RS232 - HD Mediaplayer ProCLD 750 (/showthread.php?tid=6398) |
RS232 - HD Mediaplayer ProCLD 750 - epps - 20.04.2026 Hello everyone, we have a customer that has this Videoplayer ProCLD 750 https://www.fms-infosysteme.de/procld-750 This device has a RS232 interface to control it. Is there a way to connect and control it with the Logicmachine via RS232 ? Thanks Kind regards Epps RE: RS232 - HD Mediaplayer ProCLD 750 - admin - 20.04.2026 Try this event script. Writing True sends Next command, False sends Prev command. Code: value = event.getvalue()
if value then
cmd = 'NEXT'
else
cmd = 'PREV'
end
port = serial.open('/dev/RS232', { baudrate = 9600 })
port:write('@00:' .. cmd .. '$')
port:close() |