Latches the current counter value for the timestamp into TimestampLatchValue.
Name |
TimestampLatch |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute TimestampLatch
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("TimestampLatch")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("TimestampLatch")->WaitUntilDone();
C#
// Execute TimestampLatch
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("TimestampLatch").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("TimestampLatch").WaitUntilDone();
Python
# Execute TimestampLatch
nodeMapRemoteDevice.FindNode("TimestampLatch").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("TimestampLatch").WaitUntilDone()