Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Resets the number of all values that can be selected in PtpStatisticsSelector to 0.

Name

PtpResetStatistics

Category

PtpControl

Interface

Command

Access

Write

Unit

-

Visibility

Guru

Values

-

Standard

IDS

Availability uEye+

icon-gev

Availability uEye

-

Code example

C++

// Execute PtpResetStatistics
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("PtpResetStatistics")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("PtpResetStatistics")->WaitUntilDone();

C#

// Execute PtpResetStatistics
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("PtpResetStatistics").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("PtpResetStatistics").WaitUntilDone();

Python

# Execute PtpResetStatistics
nodeMapRemoteDevice.FindNode("PtpResetStatistics").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("PtpResetStatistics").WaitUntilDone()