AW00089317000 Image Acquisition Control
Basler ace GigE 117
You can use the Basler pylon API to set the Exposure Time Abs parameter value from within your
application software. The following code snippet illustrates using the API to set the parameter value
in different increments:
Parameter set in increments of 1 µs:
// Set the exposure time to 3000 µs
Camera.ExposureTimeAbs.SetValue( 3000 );
Parameter set in increments of 35 µs:
// Set the exposure time to 3500 µs
Camera.ExposureTimeAbs.SetValue( 3500 );
You can also use the Basler pylon Viewer application to easily set the parameter.
For more information about the pylon API and pylon Viewer, see Section 3.1.1 on page 45.