Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Controls the current heartbeat timeout of the link.

Name

DeviceLinkHeartbeatTimeout

Category

DeviceControl

Interface

Float

Access

Read/Write

Unit

µs

Visibility

Guru

Values

> 0

Standard

SFNC

Availability uEye+

icon-gev

Availability uEye

-

hint_info

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)