Please enable JavaScript to view this site.

IDS peak 2.20.0 / uEye+ firmware 3.80

IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.

Saves the current settings of the features defined in SequencerFeatureSelector to the selected sequencer set. The sequencer set is defined in the SequencerSetSelector.

Name

SequencerSetSave[SequencerSetSelector]

Category

SequencerControl

Interface

Command

Access

Read/Write

Unit

-

Visibility

Expert

Values

-

Standard

SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

-

hint_info

A sequencer set can only be saved if SequencerConfigurationMode = "On".

Code example

C++

// SequencerSetSave refers to the entry selected by SequencerSetSelector
// Set SequencerSetSelector to 0
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("SequencerSetSelector")->SetValue(0);
// Execute SequencerSetSave
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("SequencerSetSave")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("SequencerSetSave")->WaitUntilDone();

C#

// SequencerSetSave refers to the entry selected by SequencerSetSelector
// Set SequencerSetSelector to 0
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("SequencerSetSelector").SetValue(0);
// Execute SequencerSetSave
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("SequencerSetSave").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("SequencerSetSave").WaitUntilDone();

Python

# SequencerSetSave refers to the entry selected by SequencerSetSelector
# Set SequencerSetSelector to 0 (int)
nodeMapRemoteDevice.FindNode("SequencerSetSelector").SetValue(0)
# Execute SequencerSetSave
nodeMapRemoteDevice.FindNode("SequencerSetSave").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("SequencerSetSave").WaitUntilDone()

© 2026 IDS Imaging Development Systems GmbH