IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Controls the current heartbeat timeout of the link.
Name |
DeviceLinkHeartbeatTimeout |
Category |
|
Interface |
Float |
Access |
Read/Write |
Unit |
µs |
Visibility |
Guru |
Values |
> 0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
The access changes to read-only during an acquisition. |
Code example
C++
// Determine the current DeviceLinkHeartbeatTimeout
double value = nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("DeviceLinkHeartbeatTimeout")->Value();
// Set DeviceLinkHeartbeatTimeout to 3500000.0 us
nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("DeviceLinkHeartbeatTimeout")->SetValue(3500000.0);
C#
// Determine the current DeviceLinkHeartbeatTimeout
double value = nodeMapRemoteDevice.FindNode<peak.core.nodes.FloatNode>("DeviceLinkHeartbeatTimeout").Value();
// Set DeviceLinkHeartbeatTimeout to 3500000.0 us
nodeMapRemoteDevice.FindNode<peak.core.nodes.FloatNode>("DeviceLinkHeartbeatTimeout").SetValue(3500000.0);
Python
# Determine the current DeviceLinkHeartbeatTimeout (float)
value = nodeMapRemoteDevice.FindNode("DeviceLinkHeartbeatTimeout").Value()
# Set DeviceLinkHeartbeatTimeout to 3500000.0 us (float)
nodeMapRemoteDevice.FindNode("DeviceLinkHeartbeatTimeout").SetValue(3500000.0)