IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Adds the IP address set in GevDiscoveryUnicastIPAddressToAdd to the list of IP addresses for unicast discovery.
Discovery commands will be sent to these addresses during the device list update.
Name |
GevDiscoveryUnicastIPAddressAdd |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute GevDiscoveryUnicastIPAddressAdd
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("GevDiscoveryUnicastIPAddressAdd")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("GevDiscoveryUnicastIPAddressAdd")->WaitUntilDone();
C#
// Execute GevDiscoveryUnicastIPAddressAdd
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("GevDiscoveryUnicastIPAddressAdd").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("GevDiscoveryUnicastIPAddressAdd").WaitUntilDone();
Python
# Execute GevDiscoveryUnicastIPAddressAdd
nodeMapRemoteDevice.FindNode("GevDiscoveryUnicastIPAddressAdd").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("GevDiscoveryUnicastIPAddressAdd").WaitUntilDone()