
Physical Interface AW00118501000
38 Basler racer Camera Link
Selecting the Source Signal Using Basler pylon
To select one of the camera’s standard output signals as the source signal for the CL Spare output
line or to select user output or off:
Use the Line Selector to select CL Spare as the output line.
Set the value of the Line Source Parameter to Line Trigger Wait, Exposure Active, User
Output, or Off. This will select the source signal for the line.
You can set the Line Selector and the Line Source parameter value from within your application
software by using the pylon API. The following code snippet illustrates using the API to set the
selector and the parameter value:
// Select the line trigger wait signal for the CL Spare output line
Camera.LineSelector.SetValue( LineSelector_CLSpare );
Camera.LineSource.SetValue( LineSource_LineTriggerWait );
// Select the exposure active signal for the CL Spare output line
Camera.LineSelector.SetValue( LineSelector_CLSpare );
Camera.LineSource.SetValue( LineSource_ExposureActive );
// Select the CL Spare output line as a user output
Camera.LineSelector.SetValue( LineSelector_CLSpare );
Camera.LineSource.SetValue( LineSource_UserOutput );
// Disable the CL Spare output line
Camera.LineSelector.SetValue( LineSelector_CLSpare );
Camera.LineSource.SetValue( LineSource_Off );
For detailed information about using the pylon API, refer to the Basler pylon Programmer’s Guide
and API Reference.
You can also use the Basler pylon Viewer application to easily set the parameters.
For more information about the pylon Viewer, see Section 3.1 on page 15.
For more information about the Line Trigger Wait signal, see Section 6.3.3 on page 64.
For more information about the Exposure Active signal, see Section 6.3.1 on page 62.
For more information about working with outputs that have "user settable" as the signal source, see
Section 5.6.2.4 on page 39.
Comentarios a estos manuales