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 |
|
Interface |
Integer |
Access |
Read |
Unit |
ns |
Visibility |
Expert |
Values |
≥ 0 |
Standard |
SFNC |
Availability uEye+ |
|
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()