IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Does a software reset of the selected timer. Starts the timer unless a Timer trigger is active.
Name |
TimerReset[TimerSelector] |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute TimerReset
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("TimerReset")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("TimerReset")->WaitUntilDone();
C#
// Execute TimerReset
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("TimerReset").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("TimerReset").WaitUntilDone();
Python
# Execute TimerReset
nodeMapRemoteDevice.FindNode("TimerReset").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("TimerReset").WaitUntilDone()