User`s manual
Physical Interface AW00049313000
66 Basler runner
// Select output line 1 as a user output
Camera.LineSelector.SetValue( LineSelector_Out1 );
Camera.LineSource.SetValue( LineSource_UserOutput );
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 17.
For more information about the Exposure Active signal, see Section 8.5.1 on page 124.
For more information about the Acquisition Trigger Wait signal, see Section 8.5.3 on page 126.
For more information about the Frame Trigger Wait signal, see Section 8.5.4 on page 126.
For more information about the Line Trigger Wait signal, see Section 8.5.5 on page 126.
For more information about working with outputs that have "user settable" as the signal source, see
Section 7.7.2.5.
Default Output Line Source Signal Selections
By default, the camera’s Exposure Active signal is selected as the source signal for Output Line 1,
and the camera’s Frame Trigger Wait signal is selected as the source signal for Output Line 2.
7.7.2.5 Setting the State of User Settable Output Lines
As mentioned in the previous section, you can select "user output" as the signal source for an output
line. For an output line that has "user output" as the signal source, you can use camera parameters
to set the state of the line.
Setting the State of a Single User Output Line
To set the state of a single user output line:
Use the User Output Selector to select the output line you want to set. For example, if you
have designated output line 2 as a user output, you would select output line 2.
Set the value of the User Output Value parameter to true (high) or false (low). This will set the
state of the selected line.
You can set the Output Selector and the User Output Value parameter from within your application
software by using the pylon API. The following code snippet illustrates using the API to select "user
settable" as the source signal for output line 2 and how to set the state of the output line:
// Select "user output" as output line 2 signal source
Camera.LineSelector.SetValue( LineSelector_Out2 );
Camera.LineSource.SetValue( LineSource_UserOutput );










