Please enable JavaScript to view this site.

IDS peak 26.06. / uEye+ firmware 3.94

Controls if the host is allowed to send the DISCOVERY_CMD via broadcast. If you disable GevAllowDiscoveryCMDBroadcast, the device discovery is done by unicast only (see GevDiscoveryUnicastIPAddressToAdd).

Name

GevAllowDiscoveryCMDBroadcast

Category

DeviceEnumeration

Interface

Boolean

Access

Read/Write

Unit

-

Visibility

Guru

Values

True

False

Standard

IDS

Availability uEye+

icon-gev

Availability uEye

-

Values description

True: Broadcasting of the DISCOVERY_CMD is enabled.

False: Broadcasting the DISCOVERY_CMD is disabled.

Code example

C++

// Determine the current status of GevAllowDiscoveryCMDBroadcast
bool value = nodeMapInterface->FindNode<peak::core::nodes::BooleanNode>("GevAllowDiscoveryCMDBroadcast")->Value();
// Set GevAllowDiscoveryCMDBroadcast to false
nodeMapInterface->FindNode<peak::core::nodes::BooleanNode>("GevAllowDiscoveryCMDBroadcast")->SetValue(false);

C#

// Determine the current status of GevAllowDiscoveryCMDBroadcast
bool value = nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.BooleanNode>("GevAllowDiscoveryCMDBroadcast").Value();
// Set GevAllowDiscoveryCMDBroadcast to false
nodeMapInterface.FindNode<IDSImaging.Peak.API.Core.Nodes.BooleanNode>("GevAllowDiscoveryCMDBroadcast").SetValue(false);

Python

# Determine the current status of GevAllowDiscoveryCMDBroadcast (bool)
value = nodeMapInterface.FindNode("GevAllowDiscoveryCMDBroadcast").Value()
# Set GevAllowDiscoveryCMDBroadcast to false (bool)
nodeMapInterface.FindNode("GevAllowDiscoveryCMDBroadcast").SetValue(False)