IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Updates the internal device list. This feature interacts with the "IFUpdateDeviceList" function of the GenTL Producer.
Name |
DeviceUpdateList |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code Example
C++
// Execute DeviceUpdateList
nodeMapInterface->FindNode<peak::core::nodes::CommandNode>("DeviceUpdateList")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapInterface->FindNode<peak::core::nodes::CommandNode>("DeviceUpdateList")->WaitUntilDone();
C#
// Execute DeviceUpdateList
nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("DeviceUpdateList").Execute();
// Check if the command has finished before you continue (optional)
nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("DeviceUpdateList").WaitUntilDone();
Python
# Execute DeviceUpdateList
nodeMapInterface.FindNode("DeviceUpdateList").Execute()
# Check if the command has finished before you continue (optional)
nodeMapInterface.FindNode("DeviceUpdateList").WaitUntilDone()