@X4-0047-5
- 23 -
■
High voltage output ON/OFF setting
You can set high voltage output ON/OFF.
The command length of the high voltage output ON/OFF setting is 3 byte.
Syntax
:
O<value><CR>
Notes:
Input value in binary.
The value is 0 or 1. (0 : OFF, 1 : ON)
As shown below, the command line can be also described in binary.
<4Fh><value><0Dh>
※
hexadecimal representation
For example, in the case of Visual Basic, when you want to turn
the high voltage output on, you can write as follows;
Dim Cmd
Cmd = “O” + Chr(1) + Chr(13)
or
Dim Cmd(2) As Byte
Cmd(0) = 79 : Cmd(1) =1 : Cmd(2) =13
Response
:
command
success
⇒
“VA”(Valid Argument) is returned.
command failure
Bad Command
⇒
“BC” is returned.
Bad Argument
⇒
“BA” is returned.