Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Selects to which branching path the corresponding settings apply.

Name

SequencerPathSelector[SequencerSetSelector]

Category

SequencerControl

Interface

Integer

Access

Read/Write

Unit

-

Visibility

Expert

Values

0

Standard

SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

-

hint_info

Can only be changed if the SequencerConfigurationMode is "On".

Code example

C++

// Before accessing SequencerPathSelector, make sure SequencerSetSelector is set correctly
// Set SequencerSetSelector to 0
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("SequencerSetSelector")->SetValue(0);
// Determine the current SequencerPathSelector
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("SequencerPathSelector")->Value();

C#

// Before accessing SequencerPathSelector, make sure SequencerSetSelector is set correctly
// Set SequencerSetSelector to 0
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("SequencerSetSelector").SetValue(0);
// Determine the current SequencerPathSelector
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("SequencerPathSelector").Value();

Python

# Before accessing SequencerPathSelector, make sure SequencerSetSelector is set correctly
# Set SequencerSetSelector to 0 (int)
nodeMapRemoteDevice.FindNode("SequencerSetSelector").SetValue(0)
# Determine the current SequencerPathSelector (int)
value = nodeMapRemoteDevice.FindNode("SequencerPathSelector").Value()