Features AW00123409000
226 Basler ace USB 3.0
// Disable the sequencer feature
camera.SequencerMode.SetValue(SequencerMode_Off);
// Enable the sequencer configuration mode
camera.SequencerConfigurationMode.SetValue(SequencerConfigurationMode_On);
// Select the first sequencer set (always sequencer set 0)
camera.SequencerSetStart.SetValue(0);
// Select a sequencer set by its index number
camera.SequencerSetSelector.SetValue(0);
// Select path 0 for the selected sequencer set
camera.SequencerPathSelector.SetValue(0);
// Select the sequencer set that will be applied after the current sequencer set
camera.SequencerSetNext.SetValue(0);
// Select the trigger source for sequencer set advance
camera.SequencerTriggerSource.SetValue(SequencerTriggerSource_Line_3);
// Select the logic for the sequencer set advance trigger source for path 0(always
LevelHigh)
camera.SequencerTriggerActivation.SetValue(SequencerTriggerActivation_Level-
High);
// Select path 1 for the selected sequencer set
camera.SequencerPathSelector.SetValue(1);
// Select the sequencer set that will be applied after the current sequencer set
camera.SequencerSetNext.SetValue(1);
// Select the trigger source for sequencer set advance
camera.SequencerTriggerSource.SetValue(SequencerTriggerSource_Line_4);
// Select the logic for the sequencer set advance trigger source for path 1(always
LevelHigh)
camera.SequencerTriggerActivation.SetValue(SequencerTriggerActivation_Level-
High);
// Save the camera parameter values and the sequencer set-related parameter values
for the selected sequencer set
camera.SequencerSetSave.Execute( );
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 on page 61.