IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the flag indicating whether the RemoteDevice is currently connected. The reconnect feature is enabled via ReconnectEnable.
Name |
RemoteDeviceConnected |
Category |
|
Interface |
Boolean |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
True False |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
|
Values description
•True: The RemoteDevice is connected.
•False: The RemoteDevice is not connected.
Code Example
C++
// Determine the current status of RemoteDeviceConnected
bool value = nodeMapLocalDevice->FindNode<peak::core::nodes::BooleanNode>("RemoteDeviceConnected")->Value();
C#
// Determine the current status of RemoteDeviceConnected
bool value = nodeMapLocalDevice.FindNode<peak.core.nodes.BooleanNode>("RemoteDeviceConnected").Value();
Python
# Determine the current status of RemoteDeviceConnected (bool)
value = nodeMapLocalDevice.FindNode("RemoteDeviceConnected").Value()