Returns the device timestamp that was captured during the last synchronization with the system timestamp.
The value is updated when SynchronizationTimestampLatch is executed.
Name |
SynchronizationTimestampDevice |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
ns |
Visibility |
Expert |
Values |
≥ 0 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Determine the current SynchronizationTimestampDevice
int64_t value = nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("SynchronizationTimestampDevice")->Value();
C#
// Determine the current SynchronizationTimestampDevice
long value = nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("SynchronizationTimestampDevice").Value();
Python
# Determine the current SynchronizationTimestampDevice (int)
value = nodeMapLocalDevice.FindNode("SynchronizationTimestampDevice").Value()