IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
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<peak.core.nodes.CommandNode>("GevDiscoveryUnicastIPAddressAdd").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.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()