User`s manual

AW00098504000 Features
Basler ace Camera Link 215
// Read the Firmware Version parameter
Pylon::String_t firmwareVersion = Camera.DeviceFirmwareVersion.GetValue();
// Read the Device ID parameter
Pylon::String_t deviceID = Camera.DeviceFirmwareVersion.GetValue();
// Write and read the Device User ID
Camera.DeviceUserID = "custom name";
Pylon::String_t deviceUserID = Camera.DeviceUserID.GetValue();
// Read the Sensor Width parameter
int64_t sensorWidth = Camera.SensorWidth.GetValue();
// Read the Sensor Height parameter
int64_t sensorHeight = Camera.SensorHeight.GetValue();
// Read the Max Width parameter
int64_t maxWidth = Camera.WidthMax.GetValue();
// Read the Max Height parameter
int64_t maxHeight = Camera.HeightMax.GetValue();
You can also use the Basler pylon Viewer application to easily read the parameters and to read or
write the Device User ID.
For more information about the pylon API and the pylon Viewer, see Section 3.2 on page 21.
Working with Device Information Parameters Using Direct Register Access
When working with the camera via direct register access, you can do the following:
Read the value in the Device Vendor Name register.
Read the value in the Device Model Name register.
Read the value in the Device Manufacturer Info register.
Read the value in the Device Version register.
Read the value of the Device Firmware Version register.
Read the value in the Device ID register.
Read the value in or set the value of the Device User ID register.
Read the value in the Device Scan Type register.
Read the value in the Sensor Width register.
Read the value in the Sensor Height register.
Read the value in the Width Max register.
Read the value in the Height Max register.
For more information about via direct register access, see Section 3.2 on page 21.