Please enable JavaScript to view this site.

IDS peak 26.06. / uEye+ firmware 3.94

Latches the current counter value for the timestamp into TimestampLatchValue.

Name

TimestampLatch

Category

DeviceControl

Interface

Command

Access

Write

Unit

-

Visibility

Expert

Values

-

Standard

SFNC

Availability uEye+

icon-gev icon-u3v

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()