Manual

<Basic pattern of Command>
Header is [STX] (H'02) and Delimiter for [ETX] (H'03), and Command of ASCII and / or Data can be inserted in between. Division of Command and
Data is ": (H'3A)".
There are 2 kinds of Commands , one is for letters and the other for numbers.
In total , there are 37 kinds of ASCII code code 0(H'30) to 9(H'39), A(H'41) to Z(H'5A),/(H'2F).
For Command of (1) to (6) and (10) PC -> Camera(To), Camera -> PC(From) are the same in both ways, but for (7),(8) and (11) it is different
between (To) and (From).
(1)Pattern 1 (For the Camera Operation ) There is no Data , only Command.
[STX] O ? S [ETX]
H'02 H'4F H'** H'53 H'03
(2)Pattern 2 (Camera mode setting )
In order of Command, ":", Data. Data length id different by each Command and maximum 3 letters.
[STX] O ? ? : ? ( ? ? ) [ETX]
H'02 H'4F H'** H'** H'3A H'** (H'** H'**) H'03
Command Data
(3)Pattern 3 (Selection of Scene) In order of Command, ":", Data. Data length=1 Byte
[STX] X S F : ? [ETX]
H'02 H'58 H'53 H'46 H'3A H'** H'03
(4)Pattern 4 (Monitoring) In order of Command, ":", Data. Data length=1 Byte
[STX] D ? ? : ? [ETX]
H'02 H'44 H'** H'** H'3A H'** H'03
Caution : Data length is fixed for each Command and not able to decrease.
Camera Command([STX][Command][ETX]) 3/26