IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Resets the user settings to the factory defaults.
Name |
ResetToFactoryDefaults |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Guru |
Values |
- |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute ResetToFactoryDefaults
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("ResetToFactoryDefaults")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("ResetToFactoryDefaults")->WaitUntilDone();
C#
// Execute ResetToFactoryDefaults
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("ResetToFactoryDefaults").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("ResetToFactoryDefaults").WaitUntilDone();
Python
# Execute ResetToFactoryDefaults
nodeMapRemoteDevice.FindNode("ResetToFactoryDefaults").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("ResetToFactoryDefaults").WaitUntilDone()