Project

General

Profile

Command Console

The command console can be found under Controls -> Command Console

Sensor registers

The sensor registers can be viewed and changed with the PEEK/POKE commands.

PEEK
----
PEEK - Used to read a sensor register.
PEEK <address>

POKE
----
POKE - Used to write a sensor register.
POKE <address> <value>

Note: Both address and value can be specified in base 10 or in base 16 if proceeded by 0x.
Example:

PEEK 16
PEEK 0x10

POKE 0x10 10
POKE 0x10 0xA

Command scripting

A series of commands can be run by creating a script text file. The file should be a list of commands to run separated by newline.

To run the script, go to GenICam -> Run script. And navigate to the script file you created.

Go to top
Add picture from clipboard (Maximum size: 1 GB)