IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
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<IDSImaging.Peak.API.Core.Nodes.CommandNode>("TimerReset").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.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()