AW00089317000 I/O Control
Basler ace GigE 73
Setting the Debouncer
The debouncer value is determined by the value of the Line Debouncer Time Abs parameter value.
The parameter is set in microseconds and can be set in a range from 0 to 20 µs.
Use the Line Selector to select input line1.
Set the value of the Line Debouncer Time Abs parameter.
You can set the Line Selector and the value of the Line Debouncer Abs parameter from within your
application software by using the Basler pylon API. The following code snippet illustrates using the
API to set the selector and the parameter value:
// Select the input line
Camera.LineSelector.SetValue( LineSelector_Line1 );
// Set the parameter value to 10 microseconds
Camera.LineDebouncerTimeAbs.SetValue( 10 );
You can also use the Basler pylon Viewer application to easily set the parameters.
For mor information about the pylon API and the pylon Viewer, see Section 3 on page 45.
6.1.3 Setting the Input Line for Invert
You can set the input line to invert or not to invert the incoming electrical signal.
1. Use the Line Selector to select the input line.
2. Set the value of the Line Inverter parameter to true to enable inversion on the selected line or
to false to disable inversion.
You can set the Line Selector and the Line Inverter 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:
// Enable the inverter on line 1
Camera.LineSelector.SetValue( LineSelector_Line1 );
Camera.LineInverter.SetValue( true );
You can also use the Basler pylon Viewer application to easily set the parameters.
For more information about the pylon API and the pylon Viewer, see Section 3.1.1 on page 45.
To set the debouncer:
To set the invert function on the input line: