IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
SignalMultiplierEnable enables or diasables the signal multiplier functionality of the camera.
Name |
SignalMultiplierEnable[SignalMultiplierSelector] |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
True False |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: Enables all signal multiplier functionalities of the camera.
•False: Disables all signal multiplier functionalities of the camera.
The access of SignalMultiplierEnable changes to read-only if Signal Multiplier is not active (SignalMultiplierEnable = "False") and PTP (PtpStatus) is not in master, slave or disabled state. |
Code example
C++
// Determine the current status of SignalMultiplierEnable
bool value = nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("SignalMultiplierEnable")->Value();
// Set SignalMultiplierEnable to false
nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("SignalMultiplierEnable")->SetValue(false);
C#
// Determine the current status of SignalMultiplierEnable
bool value = nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("SignalMultiplierEnable").Value();
// Set SignalMultiplierEnable to false
nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("SignalMultiplierEnable").SetValue(false);
Python
# Determine the current status of SignalMultiplierEnable (bool)
value = nodeMapRemoteDevice.FindNode("SignalMultiplierEnable").Value()
# Set SignalMultiplierEnable to false (bool)
nodeMapRemoteDevice.FindNode("SignalMultiplierEnable").SetValue(False)