@X4-0047-5
- 29 -
■
Read low voltage monitor value
You can read low voltage monitor value.
The command length of the low voltage monitor value is 2 byte.
Syntax
:
A<CR>
As shown below, the command line can be also described in binary.
<41h><0Dh>
※
hexadecimal representation
For example, in the case of Visual Basic, you can write as follows;
Dim Cmd
Cmd = “A” + Chr(13)
or
Dim Cmd(1) As Byte
Cmd(0) = 65 : Cmd(1) =13
Response
:
command
success
⇒
Return value is in 8 byte.
1 – 2 byte : positive 5V monitor value
3 – 4 byte : negative 5V monitor value
5 – 6 byte : positive 15V monitor value
7 – 8 byte : negative 15V monitor value
Notes:
Return value is the integer part and 2 decimal places.
2 decimal places are output as the numerical value of 100 times.
CR(Carriage return) is not returned.
command failure
Bad Command
⇒
“BC” is returned.