![Lightware HDBaseT HDMI-TPS-RX110AY User Manual Download Page 103](http://html.mh-extra.com/html/lightware/hdbaset-hdmi-tps-rx110ay/hdbaset-hdmi-tps-rx110ay_user-manual_1915355103.webp)
7.LW3Programmers’Reference
HDMI-TPS-RX110AY series – User's Manual
103
Appliedfirmwarepackage:v1.5.0b3 | LDCsoftware:v2.5.9b2
7.14.
Ethernet Message Sending
ThedevicecanbeusedforsendingamessagetoacertainIP:portaddress.Thethreedifferentcommands
allow controlling the connected (third-party) devices.
7.14.1.
Sending a TCP Message (ASCII-format)
The command is for sending a command message in ASCII-format. This method allows escaping the control
characters.
Command and Response
ç
CALL·/MEDIA/ETHERNET:tcpMessage(
<IP_address>
:
<port_no>
=
<message>
)
æ
mO·/MEDIA/ETHERNET:tcpMessage
Example
ç
CALL/MEDIA/ETHERNET:tcpMessage(192.168.0.103:6107=C00)
æ
mO/MEDIA/ETHERNET:tcpMessage
The'C00'messageissenttotheindicatedIP:portaddress.
Example with HEX codes
ç
CALL/MEDIA/ETHERNET:tcpMessage(192.168.0.20:5555=C00\x0a\x0d)
æ
mO/MEDIA/ETHERNET:tcpMessage
The 'C00' message with CrLf (Carriage return and Line feed) is sent to the indicated IP:port address.
The \x sequence indicates the HEXA code; see more information in the
section.
7.14.2.
Sending a TCP Text (ASCII-format)
The command is for sending a text message in ASCII-format. This method
does not allow
escaping or inserting
control characters.
Command and Response
ç
CALL·/MEDIA/ETHERNET:tcpText(
<IP_address>
:
<port_no>
=
<text>
)
æ
mO·/MEDIA/ETHERNET:tcpText
Example
ç
CALL/MEDIA/ETHERNET:tcpText(192.168.0.103:6107=pwr_on)
æ
mO/MEDIA/ETHERNET:tcpText
The'pwr_on'textissenttotheindicatedIP:portaddress.
7.14.3.
Sending a TCP Binary Message (HEX-format)
The command is for sending a binary message in Hexadecimal format. This method
does not require
escaping
the control and non-printable characters.
Command and Response
ç
CALL·/MEDIA/ETHERNET.tcpBinary(
<IP_address>
:
<port_no>
=
<HEX_message>
)
æ
mO·/MEDIA/ETHERNET:tcpBinary
Example
ç
CALL/MEDIA/ETHERNET:tcpBinary(192.168.0.103:6107=0100000061620000cdcc2c40)
æ
mO/MEDIA/ETHERNET:tcpBinary
The'0100000061620000cdcc2c40'messageissenttotheindicatedIP:portaddress.
INFO:
There is no need to insert a space or other separator character between the binary messages.
7.14.4.
Sending a UDP Message (ASCII-format)
The command is for sending a UDP message in ASCII-format. This method allows escaping the control characters.
Command and Response
ç
CALL·/MEDIA/ETHERNET:udpMessage(
<IP_address>
:
<port_no>
=
<message>
)
æ
mO·/MEDIA/ETHERNET:udpMessage
Example
ç
CALL/MEDIA/ETHERNET:udpMessage(192.168.0.103:6107=C00)
æ
mO/MEDIA/ETHERNET:udpMessage
The'C00'messageissenttotheindicatedIP:portaddress.
Example with HEX codes
ç
CALL/MEDIA/ETHERNET:udpMessage(192.168.0.20:9988=C00\x0a\x0d)
æ
mO/MEDIA/ETHERNET:udpMessage
The'C00'messagewithCrLf(CarriagereturnandLinefeed)issenttotheindicatedIP:portaddress.The\x
sequence indicates the HEXA code; see more information in the
section.