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.

Controls the timeout value in ms for triggered image acquisition on uEye cameras (UI models). The default value is 60,000 ms.

Note that IDS Software Suite specifies the timeout value in increments of 10 ms, while the uEye transport layer specifies the timeout value in increments of 1 ms.

Name

IS_TRIGGER_TIMEOUT

Category

AcquisitionControl

Interface

Integer

Access

Read/Write

Unit

ms

Visibility

Expert

Values

40 … 4294967290

Standard

IDS

Availability uEye+

-

Availability uEye

icon-ui-gige icon-ui-usb2 icon-ui-usb3

Code example

C++

// Determine the current IS_TRIGGER_TIMEOUT
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("IS_TRIGGER_TIMEOUT")->Value();
// Set IS_TRIGGER_TIMEOUT to 400
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("IS_TRIGGER_TIMEOUT")->SetValue(400);

C#

// Determine the current IS_TRIGGER_TIMEOUT
long value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("IS_TRIGGER_TIMEOUT").Value();
// Set IS_TRIGGER_TIMEOUT to 400
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("IS_TRIGGER_TIMEOUT").SetValue(400);

Python

# Determine the current IS_TRIGGER_TIMEOUT (int)
value = nodeMapRemoteDevice.FindNode("IS_TRIGGER_TIMEOUT").Value()
# Set IS_TRIGGER_TIMEOUT to 400 (int)
nodeMapRemoteDevice.FindNode("IS_TRIGGER_TIMEOUT").SetValue(400)

© 2026 IDS Imaging Development Systems GmbH