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.

RS232 - HD Mediaplayer ProCLD 750
#1
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

Attached Files
.pdf   Gebrauchsanleitung ProCLD750_28_10_2020.pdf (Size: 794.23 KB / Downloads: 5)
Reply
#2
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()
Reply


Forum Jump: