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 |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
ms |
Visibility |
Expert |
Values |
40 … 4294967290 |
Standard |
IDS |
Availability uEye+ |
- |
Availability uEye |
|
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)