Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

SignalMultiplierEnable enables or diasables the signal multiplier functionality of the camera.

Name

SignalMultiplierEnable[SignalMultiplierSelector]

Category

SignalMultiplierControl

Interface

Boolean

Access

Read/Write

Unit

-

Visibility

Expert

Values

True

False

Standard

IDS

Availability uEye+

icon-gev

Availability uEye

-

Values description

True: Enables all signal multiplier functionalities of the camera.

False: Disables all signal multiplier functionalities of the camera.

hint_info

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)