Please enable JavaScript to view this site.

IDS peak 26.06. / uEye+ firmware 3.94

Returns the current value of the device's timestamp counter. The same timestamp counter is used for tagging images, chunk data, and event data.

Note that the increment of the timestamp feature 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 Timestamp
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Timestamp")->Value();

C#

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

Python

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