IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Sets the delay for the start of the "FlashActive" signal. The delay is relative to the reference signal set in FlashReference.
Name |
FlashStartDelay |
Category |
|
Interface |
Float |
Access |
Read/Write |
Unit |
µs |
Visibility |
Expert |
Values |
Camera specific |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
|
Code example
C++
// Determine the current FlashStartDelay
double value = nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("FlashStartDelay")->Value();
// Set FlashStartDelay to 0.0 us
nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("FlashStartDelay")->SetValue(0.0);
C#
// Determine the current FlashStartDelay
double value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.FloatNode>("FlashStartDelay").Value();
// Set FlashStartDelay to 0.0 us
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.FloatNode>("FlashStartDelay").SetValue(0.0);
Python
# Determine the current FlashStartDelay (float)
value = nodeMapRemoteDevice.FindNode("FlashStartDelay").Value()
# Set FlashStartDelay to 0.0 us (float)
nodeMapRemoteDevice.FindNode("FlashStartDelay").SetValue(0.0)