Please enable JavaScript to view this site.

IDS peak 26.06. / uEye+ firmware 3.94

Returns the latched value of the timestamp counter.

Note that the increment of TimestampLatchValue must correspond to the resolution of the device timestamp in nanoseconds.

Name

Timestamp

Category

DeviceControl

Interface

Integer

Access

Read

Unit

ns

Visibility

Expert

Values

≥ 0

Standard

SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

-

Code example

C++

// Determine the current TimestampLatchValue
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("TimestampLatchValue")->Value();

C#

// Determine the current TimestampLatchValue
long value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("TimestampLatchValue").Value();

Python

# Determine the current TimestampLatchValue (int)
value = nodeMapRemoteDevice.FindNode("TimestampLatchValue").Value()