●To ensure the best performance of this product, please read this Command Guide and Users Guide fully and
carefully before using your product and store this manual near the product.
IDK Corporation
MSD-804FD Users Guide (Command Guide)
Trademarks
• The terms HDMI and HDMI High-Definition Multimedia Interface, and the HDMI Logo are trademarks or
registered trademarks of HDMI Licensing, LLC in the United States and other countries.
• PJLink is a trademark in JAPAN, the United States, and other countries/regions.
• Microsoft and Visual Basic are either registered trademark or trademark of the Microsoft Corporation in
the United States and other countries.
• Microsoft
• All other company and product names mentioned in this manual are either registered trademarks or
trademarks of their respective owners. In this manual, the “®” or “™” marks may not be specified.
®
.NET is software to connect you, information, systems, and devices.
2
MSD-804FD Users Guide (Command Guide)
Before reading this manual
● All rights reserved.
● Some of the contents in this command guide such as appearance diagrams, menu operations,
communication commands, and so on may differ from your MSD depending on the version.
● This command guide is subject to change without notice. You can downloaded the latest version from IDK’s
website at: http://www.idk.co.jp/en/index.html
The reference manual for MSD-804FD consists of the following two volumes:
■ Users guide:
Provides explanations and procedures for operations, installation, connections among devices, I/O
adjustment and settings.
■ Command guide (this document): Please download this guide from the website above.
Provides explanations and procedures for external control using serial and LAN communications.
1.1RS-232C Port ...................................................................................................................................... 5
1.2LAN Port .............................................................................................................................................. 6
1.2.1The number of TCP-IP connections ............................................................................................. 6
3.3.11RS-232C port .............................................................................................................................. 77
3.3.12LAN port ...................................................................................................................................... 79
The MSD-804FD controls peripheral devices externally by serial communication with RS-232C connector.
Connect control devices such as computers and the MSD with a RS-232C cable, and then control the MSD
and acquire status using commands. For command character notations and RS-232C connector
configuration, see sections “2 ASCII codes” in this manual and “8.10 COM Ports” in Users Guide.
[Table 1.1] Spec of serial communication
Compliance
standard
Baud rate 4800, 9600, 19200, 38400 [bps]
Data bit 8, 7 [bit]
Parity check None, even, odd
Stop bit 1, 2 [bit]
X parameter Invalid
Flow control None
Delimiter CR LF (Carriage return and line feed, 0D and 0A in
Communication
pattern
RS-232C
hexadecimal)
Full duplex
[Figure 1.1] Spec of RS-232C connectors and cables
5
MSD-804FD Users Guide (Command Guide)
1.2 LAN Port
The MSD-804FD controls peripheral devices externally using LAN. Connect control devices such as
computers and the MSD-804FD with LAN, and then control the MSD and acquire the status using commands.
For command character notations, see “2 ASCII code”. For control using commands, use ports 6000 to 6999,
1100, and 23. Connection will be disconnected if no communication for 30 seconds or longer after connection.
For LAN settings, refer to “8.11 LAN Settings” in the Users Manual.
Port used for command control: 23, 1100, 6000 to 6999
Port used for WEB browser control (HTTP): 80, 5000 to 5999
[Figure 1.2] LAN connector
1.2.1 The number of TCP-IP connections
The MSD-804FD can connect up to eight connections (eight ports) at a time. If the MSD is controlled from
nine or more computers, they may not be connected to the MSD.
For nine or more connections, use your software to establish and close TCP-IP connections for each sending
and receiving communication commands. By doing so, ports are occupied and released in the MSD side so
that logically eight or more connections (8 ports) can be connected.
Your PC software MSD-804FD
TCP-IP
connection
Send command
(@xxx)
←
TCP-IP close →(Release 1 port → 8 ports
[Figure 1.3] Increasing connections
→(Occupied by 1 port → 7
ports free)
→
Send back command (@xxx)
free)
6
MSD-804FD Users Guide (Command Guide)
Note: If any command is not sent from the computer side to the MSD for 30 seconds, it disconnects the
connection to avoid the limitation problem on the number of connections. As a result, connection needs to be
established again from the computer side after the current connection of the computer is disconnected. (As
the number of ports in the MDS-804FD is eight, if the computer is turned off while it is connected, ports are
occupied permanently. To prevent this, the connection is disconnected if no communication command is sent
from the computer side.)
Example of programing with Microsoft Visual Basic.NET 2008:
Acquiring the following three data using Button1_Click in line 105 and sending the communication command
to the MSD:
- “communication command to be sent” of TextBox1
- “target host” of TextBox2
- “port number” of TextBox3
In this example, the following programing is run to solve the data transmission delay occurred when
connection and close are performed repeatedly. This is correspondent to the lines 4, 5, 14, 15, 16 in the
programing example.
'Open the cliant
Private stClient As TcpClient 'client class
Private stns As System.Net.Sockets.NetworkStream 'Stream class
Private portNum As Integer 'Port number
Private hostName As String 'Host name
TcpClient.NoDelay: This disables the delay if send or receive buffer does not exceed the set size. The
specified value is “False”. The delay time can be reduced by changing the NoDelay
property.
7
MSD-804FD Users Guide (Command Guide)
Example of programing with Microsoft Visual Basic.NET 2008
1: Imports System
2: Imports System.Net.Sockets
3: Public Class Form1
4: Private stClient As TcpClient 'Client
5: Private stns As System.Net.Sockets.NetworkStream 'Stream
6: Public Function mOpen(ByVal pHostName As String, ByVal pPortNum As Integer) As
Boolean
7: '********************************************************
8: ' Open
9: ' Return value Succed: True Fail: False
10: '********************************************************
11: mOpen = False 'Initial Value
12: Try
13: 'Opening Client
14: stClient = New System.Net.Sockets.TcpClient(pHostName, pPortNum)
15: stClient.NoDelay = True 'Invalid transmit / receive delay
16: stns = stClient.GetStream() 'Open stream
17: If stns.CanTimeout Then
18: stns.ReadTimeout = 1000 'Time out (1000ms)
19: End If
20: mOpen = True 'Succeed
21: Catch ex As Exception
22: Console.WriteLine(ex.Message) 'Displaying unsual process
23: End Try
24:
25: End Function
26: Private Function mSendMessege(ByVal pMsg As String) As String
27: '********************************************************
28: ' Sending message
29: ' pMsg sending message
30: ' Return value Returned Charactor
31: '********************************************************
32: Dim dtBirth As DateTime 'Time out
33: Dim wNow As DateTime 'Current time
34: Dim pRecvMsg As String 'Return message
35: Dim bytes2(1024) As Byte 'Return message temporally store area (Byte type)
36: Dim bytesRead1 As Integer ‘Return message temporally store area (Integer type)
37: Dim word As Byte() 'Store area for temporary written data at the time of system output
38:
39: mSendMessege = "" 'Return value Clear
40: pRecvMsg = "" 'Work Area Clear
41: :
42: Try
43: '----Transmit Checking----
44: If stns.CanWrite Then 'Be able to write?
45: 'character encode
46: word = System.Text.Encoding.Default.GetBytes (pMsg + vbCrLf)
47: 'Output to socket
48: stns.Write(word, 0, word.Length)
49: Else
50: Exit Function
51: End If
52:
53: '----Receive----
54: dtBirth = DateTime.Now
55: dtBirth = dtBirth.AddSeconds(3) 'Time out after 3 sec.
56: Do
57: wNow = DateTime.Now 'Compare to current time
58: If (wNow > dtBirth) Then
59: Exit Do 'Stop process when it exceeds the set time (time out)
60: End If
61:
62: If stns.CanRead Then 'When readable
63: 'Read data
64: bytesRead2 = stns.Read(bytes2, 0, bytes2.Length)
65: 'Encode
66: pRecvMsg = pRecvMsg & _
67: System.Text.Encoding.Default.GetString(bytes2, 0, bytesRead2)
68: If pRecvMsg <> "" Then
8
MSD-804FD Users Guide (Command Guide)
69: 'Extract fro @toCRLF
70: If ((InStr(pRecvMsg, vbCrLf) <> 0) And (InStr(pRecvMsg, "@") <> 0))
Then
71: pRecvMsg = Mid(pRecvMsg, _
72: InStr(pRecvMsg, "@"), _
73: InStr(pRecvMsg, vbCrLf) _
74: - InStr(pRecvMsg, "@"))
75: Exit Do
76: End If
77: End If
78: End If
79: Loop
80: mSendMessege = pRecvMsg ‘Retun received data
81:
82: Catch ex As Exception
83: Console.WriteLine(ex.Message) ‘Display exception processing
84: End Try
85:
86: End Function
87: Public Sub mClose()
88: : '*******************************************************
89: ' Close
90: '*******************************************************
91: Try
92: If Not stns Is Nothing Then 'Check if there is stream
93: stns.Close() 'Close stream
94: End If
95:
96: If Not stClient Is Nothing Then 'Check if there is client
97: stClient.Close() 'Close cliant
98: End If
99:
100: Catch ex As Exception
101: Console.WriteLine(ex.Message) 'Display exception processing
102: : End Try
103:
104: End Sub
105: : Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles Button1.Click
106: Dim wRecvMsg As String 'Store area fir received character strings
107: Dim i As Integer
108: Dim wHostName As String
109: Dim wPortNum As Integer
110:
111: If (TextBox2.Text = "") Then 'Check host name
112: MsgBox("Host name not registered")
113: : Exit Sub
114: : End If
115:
116: wHostName = TextBox2.Text
117:
118: If (TextBox3.Text = "") Then 'Check port number
119: MsgBox("Port number not registered")
120: Exit Sub
121: End If
122: wPortNum = Val(TextBox3.Text)
123:
124: If TextBox1.Text = "" Then 'Check sent character string
125: MsgBox("Sent character not registeered")
126: Exit Sub
127: End If
128:
129: Label6.Text = ""
130:
131: For i = 0 To 2 'Retries 3 times (If all ports of MSD-804FD are used by other cliants)
132: If Not mOpen(wHostName, wPortNum) Then
133: MsgBox("Communication open error")
134: GoTo Exit_Step
135: End If
136:
9
MSD-804FD Users Guide (Command Guide)
137: 'Open
138: wRecvMsg = mSendMessege(TextBox1.Text) 'Send
139: Console.WriteLine("wRecvMsg:" & wRecvMsg & Now)
140: mClose() 'Close
141:
142: If wRecvMsg <> "" Then
143: Label6.Text = wRecvMsg
144: GoTo Exit_Step
145: End If
146:
147: Next i
148:
149: MsgBox("Send error")
150:
151: Exit_Step:
152:
153: End Sub
154: End Clas
10
2 ASCII codes
[Table 2.1] ASCII codes (1/2)
ASCII Hex
NUL
SOH
STX
ETX
EOT
ENQ
ACK
BEL
BS
HT
LF
VT
FF
CR
SO
SI
DLE
DC1
DC2
DC3
DC4
NAK
SYN
ETB
CAN
EM
SUB
ESC
FS
GS
RS
US
00
01
02
03
04
05
06
07
08
09
0A
0B
0C
0D
0E
0F
10
11
12
13
14
15
16
17
18
19
1A
1B
1C
1D
1E
1F
ASCII Hex ASCII Hex
SP
!
"
#
$
%
&
'
(
)
*
+
,
.
/
0
1
2
3
4
5
6
7
8
9
:
;
<
=
>
?
20
21
22
23
24
25
26
27
28
29
2A
2B
2C
2D
2E
2F
30
31
32
33
34
35
36
37
38
39
3A
3B
3C
3D
3E
3F
@
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
[
\
]
^
_
MSD-804FD Users Guide (Command Guide)
ASCII Hex
40
41
42
43
44
45
46
47
48
49
4A
4B
4C
4D
4E
4F
50
51
52
53
54
55
56
57
58
59
5A
5B
5C
5D
5E
5F
`
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
{
|
}
to
DEL
60
61
62
63
64
65
66
67
68
69
6A
6B
6C
6D
6E
6F
70
71
72
73
74
75
76
77
78
79
7A
7B
7C
7D
7E
7F
11
[Table 2.2] ASCII codes (2/2)
ASCII code HexDetailed control code
NUL
SOH
STX
ETX
EOT
ENQ
ACK
BEL
BS
HT
LF
VT
FF
CR
SO
SI
DLE
DC1
DC2
DC3
DC4
NAK
SYN
ETB
CAN
EM
SUB
ESC
FS
GS
RS
US
SP
DEL
00
01Start Of Heading
02
03End of TeXt
04
05ENQuiry
06
07BELl
08
09Horizontal Tabulation
0A
0B Vertical Tabulation
0C
0D Carriage Return
0E
0FShift In
10
11Device Control 1
12
13Device Control 3
14
15Negative AcKnowledge
16
17End of Transmission Block
18
19End of Medium
1A
1B ESCape
1C
1D Group Separator
1E
1FUnit Separator
20
7F DELete
NULl
Start of TeXt
End Of Transmission
ACKnowledge
Back Space
Line Feed
Form Feed
Shift Out
Data Link Escape
Device Control 2
Device Control 4
SYNchronous idle
CANcel
SUBstitute
File Separator
Record Separator
SPace
MSD-804FD Users Guide (Command Guide)
12
3 Commands
3.1 Summary
MSD-804FD Users Guide (Command Guide)
A command consists of “@” (“40” in hexadecimal), 3 one-byte alphabetical characters (upper and lower
cases), and parameters (one-byte numbers
no parameter is required. Processing is executed by sending a delimiter at the end of the command.
Example: @SSW,1,1
“,”( a comma, “2C” in hexadecimal) is indicated between a command and parameter and between two
parameters.
: A “delimiter” is CR+LF, ”0D+0A” in hexadecimal.
* Some commands contain parameters specifying ASCII codes.
1. Commands for changing settings of the MSD
Commands and parameters with a comma are sent. (For some commands, several parameters can be
specified or no parameter is required.) When a command is processed correctly, the received command
is sent back without any change.
Example: @SSW,1,1←Sent command
@SSW,1,1←Reply from the MSD
2. Commands for receiving settings of the MSD
Commands are sent.( For some commands, parameters are required.) When a command is executed
correctly, the current settings are sent back following the received command. (For some commands,
several parameters are sent back.)
*
). For some commands, several parameters can be specified or
Example: @GSW←Sent command
@GSW,1,1,1,1,1,1←Reply from the MSD
3. Error commands
If there is an undefined command or wrong parameter, the error command and the error details (one-byte
number) are sent back.
Example: @SSW,1,4←Sent command (This example contains wrong parameter)
@ERR,1←Error command from the MSD
4. Help
If only delimiter is sent without specifying any command, the command list is sent back. (If you want to
receive the whole list of the all commands, send a delimiter for 13 times, since the list is divided into 13
parts.)
Example: ←Sent delimiter
13
MSD-804FD Users Guide (Command Guide)
--------------- HELP (1/13) ---------------←Following is the command list
(CHANNEL SELECT Command)
@SSW / @GSW: Set/Get Input Channel
@SSV / @GSV: Set/Get Video Input Channel
@SSA / @GSA: Set/Get Audio Input Channel
14
3.2 List
Error status
Command Feature
@ERR Error status
Power switch of display device
Command Feature
@SDS Set display power
@GDS Get display power status
Input channel
Command Feature
@SSW Switch video and audio channel simultaneously
@GSW Get input channel
@SSV Switch video channel
@GSV Get video channel
@SSA Switch audio channel
@GSA Get audio channel
Position, size, and masking
Command Feature
@SOT Set output resolution
@GOT Get output resolution
@GTD Get actual output resolution
@SUM Set display aspect ratio
@GUM Get display aspect ratio
@SAP Set aspect ratio
@GAP Get aspect ratio
@SAR Set aspect ratio restoration
@GAR Get aspect ratio restoration
@SOV Set overscan
@GOV Get overscan
@SNP Set input position
@GNP Get input position
@SNS Set input size
@GNS Get input size
@SNM Set input masking
@GNM Get input masking
@IAS Input automatic sizing
@SOP Set output position
@GOP Get output position
@SOS Set output size
@GOS Get output size
@SOM Set output masking
@GOM Get output masking
@OAS Output automatic sizing
@SBC Set background color
@GBC Get background color
@STP Set test pattern
@GTP Get test pattern
MSD-804FD Users Guide (Command Guide)
15
Video quality
Command Feature
@SBR Set input brightness
@GBR Get input brightness
@SCO Set input contrast
@GCO Get input contrast
@SHU Set hue
@GHU Get hue
@SST Set saturation
@GST Get saturation
@SSU Set black level
@GSU Get black level
@IDC Input default color
@SOB Set output brightness
@GOB Get output brightness
@SOC Set output contrast
@GOC Get output contrast
@ODC Output default color
Input settings
Command Feature
@SDT Set no-signal-input monitoring
@GDT Set no-signal-input monitoring
@SHE Set HDCP input enabled/disabled
@GHE Get HDCP input enabled/disabled
@SIQ Set input equalizer
@GIQ Get input equalizer
@SID Set automatic detection of input video interruption
@GID Get automatic detection of input video interruption
Input timing
Command Feature
@GHT Get the total number of horizontal dots
@SHS Set horizontal start position
@GHS Get horizontal start position
@SHD Set horizontal display
@GHD Get horizontal display
@SVS Set vertical start position
@GVS Get vertical start position
@SVD Set vertical display period
@GVD Get vertical display period
@RTT Initialize input timing setting
Output settings
Command Feature
@SEQ Set output equalizer
@GEQ Get output equalizer
@SDM Set output mode
@GDM Get output mode
@SUY Set synchronous signal output with no input video
@GUY Get synchronous signal output with no input video
@SBO Set output video with no input video
@GBO Get output video with no input video
@SFF Set video switching effect
@GFF Get video switching effect
@SFT Set video switching speed
@GFT Get video switching speed
@SWC Set wipe color
MSD-804FD Users Guide (Command Guide)
16
@GWC Get wipe color
@SVO Set video output connector
@GVO Get video output connector
@SEN Set HDCP output mode
@GEN Get HDCP output mode
@SHR Set the number of HDCP retriesSet the number of HDCP
@GHR Get the number of HDCP retries
@SDC Set Deep Color
@GDC Get Deep Color
@SCE Set CEC
@GCE Get CEC
@HAU Re-authorize HDCP
@SFL Set frame lock mode
@GFL Get frame lock mode
Audio
Command Feature
@SSL Set audio output level
@GSL Get audio output level
@SOL Set relative value of audio output level
@GOL Get limit status of audio output level
@SAM Set output mute
@GAM Get output mute
@SAS Select audio input
@GAS Get audio input
@GSD Get actual audio input
@SSO Set audio input level
@GSO Get audio input level
@SIL Set relative value of audio input
@GIL Get limit status of audio input
@SLO
Set output lip sync
@GLO Get output lip sync
@SLY Set input lip sync
@GLY Get input lip sync
@SSF Set sampling frequency of analog audio input
@GSF Get sampling frequency of analog audio input
@GFD Get actual sampling frequency of analog audio input
@SDO Set audio output connector
@GDO Get audio output connector
@SAO Set digital audio output connector
@GAO Get digital audio output connector
@SMD Set multi-channel audio output
@GMD Get multi-channel audio output
@SAT Set test tone
@GAT Get test tone
MSD-804FD Users Guide (Command Guide)
17
EDID
Command Feature
@SED Set EDID
@GED Get EDID
@SVF Set PC resolution (EDID)
@GVF Get PC resolution (EDID)
@SHF Set HDTV resolution (EDID)
@GHF Get HDTV resolution (EDID)
@SDI Set Deep Color
@GDI Get Deep Color
@SAF Set audio format
@GAF Get audio format
@SSP Set speaker
@GSP Get speaker
@RME Copy EDID
Serial port
Command Feature
@SCT RS-232C port communication
@GCT Get RS-232C port communication
@SCF Set RS-232C port operation
@GCF Get RS-232C port operation
LAN port
Command Feature
@SIP Set IP address
@GIP Get IP address
@SBI Set OUTB IP address
@GBI Get OUTB IP address
@SSB Set subnet mask
@GSB Get subnet mask
@SBS Set OUTB subnet mask
@GBS Get OUTB subnet mask
@SGW Set LAN gateway address
@GGW Get LAN gateway address
@SBG Set OUTB gateway address
@GBG Get OUTB gateway address
@SLF Set LAN operation mode
@GLF Get LAN operation mode
@SLP Set TCP port number
@GLP Get TCP port number
@GMC Get MAC address
@GMA Get OUTB MAC address
Control commands
Command Feature
@EXC Execute control commands
@SEC Set control command (Control communication command)
@GEC Get control command (Control communication command)
@SEC Set control command (Display received data)
@GEC Get control command (Display received data)
@SEC Set control command (Control CEC)
@GEC Get control command (Control CEC)
@SRC Set reply command
@GRC Get reply command
@SCC Set command link
@GCC Get command link
@STG Set toggle operation
@GTG Get toggle operationGet toggle
18
MSD-804FD Users Guide (Command Guide)
MSD-804FD Users Guide (Command Guide)
@SUP Set execution plane at starting up
@GUP Get execution plane at starting up
@SIT Set ineffective time during control command
@GIT Get ineffective time during control command
@DEC Initialize registered command and association
@STL Set command key lighting
@GTL Get command key lighting
@STF Set flash time (Command keys and DISPLAY POWER keys)
@GTF Get flash time (Command keys and DISPLAY POWER keys)
Preset memory
Command Feature
@RCM Load video and audio channel setting from cross point memory
@SCM Overwrite video and audio channel setting in cross point memory
@SEM Save video and audio channel setting in cross point memory
@ECM Edit video and audio channel setting in cross point memory
@GCM Get video and audio channel setting in cross point memory
@RCV Load video channel setting from cross point memory
@SCV Overwrite video channel setting in cross point memory
@SEV Saving video channel setting in cross point memory
@ECV Edit video channel setting in cross point memory
@GCV Get video channel setting in cross point memory
@RCA Load audio channel setting from cross point memory
@SCA Overwrite audio channel setting in cross point memory
@SEA Save audio channel setting in cross point memory
@ECA Edit audio channel setting in cross point memory
@GCA Get audio channel setting in cross point memory
@RPM Load all settings from preset memory
@SPM Save all settings in preset memory
@SMU Set startup setting
@GMU Get startup setting
19
Bitmap
Command Feature
@SBM Set bitmap output
@GBM Get bitmap output
@SBB Set bitmap background color
@GBB Get bitmap background color
@SBT Set bitmap aspect ratio
@GBT Get bitmap aspect ratio
@SZP Set bitmap display positionSet bitmap
@GZP Get bitmap display position
@SBA Set bitmap input channel assignment
@GBA Get bitmap input channel assignment
@SPB Set startup bitmap
@GPB Get startup bitmap
@SBD Set bitmap memory divide
@GBD Get bitmap memory divide
@GBV Get bitmap memory usage
@SBN Set bitmap number
@GBN Get bitmap number
@SFZ Set freeze
@GFZ Get freeze
@CAP Capture input image
Others
Command Feature
@SLS Set/Release key lock
@GLS Get key lock status
@SLM Set key lock target for front panel
@GLM Get key lock target for front panel
@SBZ Set buzzer
@GBZ Get buzzer
@GSS Get I/O status
@GES Get monitor’s EDID information
@GIV Get version information
MSD-804FD Users Guide (Command Guide)
20
MSD-804FD Users Guide (Command Guide)
3.3 Settings
For “Related info.” mentioned in each table below, refer to the Users Guide of MSD-804FD.
3.3.1 Error status
@ERR Error status
Command
format
Return value
format
Parameter error : Error status
Example Send
Send
Send
Only Return value
@ERR, error
1 = Erroneous parameter format or value
2 = Undefined command or wrong format
3 = Currently unavailable command
5 = The command could not be executed since no command was registered or the
command was not registered.
6 = The command could not process the command since another command was
being executed.
7 = Automatic measurement of input timing failed.
8 = Loading EDID from the display device failed.
10 = The control command was stopped according to the stop condition.
11 = The control command was stopped since the number of retries exceeded the
set value of “RETRY”.
12 = The control command of PJLink was stopped since the password did not match.
13 = The image could not be captured since the image size to be captured exceeded
the reserved memory size.
14 = Capturing input image failed.
15 = Could not be set or collected since Cat5e/Cat6 output option is not installed.
Receive
Receive
Receive
@SSW,999,1@ERR,1
@XYZ@ERR,2
@RPM,3
@ERR,3
Parameter error
Not defined command
Specified memory number had no data registration
21
MSD-804FD Users Guide (Command Guide)
3.3.2 Display devices ON/OFF
@SDS Set display power
Command format
Return value
format
Parameter ch_1-4 : Output
Example Send
Send
Related info. 7.3 Turning ON/OFF Display Devices
Notes Since the result is sent after turning on/off the device, it may take a long time to
@GDS Get display power status
Command format
Return value
format
Parameter out_1-4 : Power switch of each output monitors
Turn on the display device connected to OUT1.
Terminated normally
Turn off the display device connected to OUT1.
If terminated abnormally, the error status and
output number are replied. (If several output are
controlled, several errors may be replied.)
・・・
)
・・・
)
Get the power switch status of a display device.
OUT3 is OFF; the other outputs are ON.
22
MSD-804FD Users Guide (Command Guide)
3.3.3 Input channels
@SSW Switch video and audio channel simultaneously
Command format
Return value
format
Parameter input_1-4 : Video and audio input connector