-
Notifications
You must be signed in to change notification settings - Fork 1
AT Commands
This section presents the list of AT commands used for interfacing with the ATMEGA328P MCU in the USB HUB Camera Board using a usb-serial FTDI interface, together with a detailed description of their functions and examples of use.
AT
AT+VERSION?
AT+STOP
AT+START
AT+TRIGGER
AT+PERIOD?
AT+PERIOD=VALUE
Checks if device is connected and alive
Example:
AT
Response:
> OK
Checks for the hardware and firmware versions
Example:
AT+VERSION?
Response:
> Hardware version: v1.0
> Firmware version: v1.1
Stops the automatic trigger mode
Example:
AT+STOP
Response:
Automatic trigger mode stopped
Starts the automatic trigger mode
Example:
AT+START
Response:
Automatic trigger mode started
Sends a single trigger pulse
Example:
AT+TRIGGER
Response:
Sending single trigger signal
Requests the current automatic trigger period
Example:
AT+PERIOD?
Response:
Trigger period (ms) = 1000
Sets the period of the automatic trigger to the value specified by VALUE. VALUE must be an integer in milliseconds
Example:
AT+PERIOD=500
Response:
Trigger period (ms) = 500