IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Controls if the IP address of the camera is persistent or dynamically assigned.
Name |
GevCurrentIPConfigurationPersistentIP |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Beginner |
Values |
True |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: The IP address of the camera is persistent as specified by GevCurrentIPAddress.
•False: The IP address of the camera is dynamically assigned.
The access changes to read-only during an acquisition. |
Code example
C++
// Determine the current status of GevCurrentIPConfigurationPersistentIP
bool value = nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("GevCurrentIPConfigurationPersistentIP")->Value();
// Set GevCurrentIPConfigurationPersistentIP to false
nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("GevCurrentIPConfigurationPersistentIP")->SetValue(false);
C#
// Determine the current status of GevCurrentIPConfigurationPersistentIP
bool value = nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("GevCurrentIPConfigurationPersistentIP").Value();
// Set GevCurrentIPConfigurationPersistentIP to false
nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("GevCurrentIPConfigurationPersistentIP").SetValue(false);
Python
# Determine the current status of GevCurrentIPConfigurationPersistentIP (bool)
value = nodeMapRemoteDevice.FindNode("GevCurrentIPConfigurationPersistentIP").Value()
# Set GevCurrentIPConfigurationPersistentIP to false (bool)
nodeMapRemoteDevice.FindNode("GevCurrentIPConfigurationPersistentIP").SetValue(False)