Typical Usage


  1. Obtain the number of Commander devices connected to the PC with GetCommanderNumber.
  2. Open the Commander:
    1. By ID:
      1. Get the device name string (ID) of the number (index) specified by GetCommanderID.
      2. Get the CommanderDeviceHandle* to manipulate the specified Commander with the device name string specified by OpenCommanderByID.
    2. By index (0 based)
      1. Get the CommanderDeviceHandle* to manipulate the specified Commander with the device name string specified by OpenCommanderByIndex.
  3. Communicate with the Commander core using SendReceiveCommander by specifying the acquired CommanderDeviceHandle*.
  4. After sending the command string, a reply string will be obtained, and an error code is returned.

For the command definition and the returned serial number string, refer to the Command Reference

  1. Close the connection to the Commander with CloseCommander when finished with all operations.


< Previous | Topic Home | Home |  Next Section  >