Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Returns the number of control channel read commands since the device was opened. Only acknowledged commands are considered.

Name

ControlChannelReadCount

Category

ControlChannelMonitor

Interface

Integer

Access

Read

Unit

-

Visibility

Expert

Values

unsigned int 4-byte

Standard

IDS

Availability uEye+

icon-gev

Availability uEye

-

Code Example

C++

// Determine the current ControlChannelReadCount
int64_t value = nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("ControlChannelReadCount")->Value();

C#

// Determine the current ControlChannelReadCount
long value = nodeMapLocalDevice.FindNode<peak.core.nodes.IntegerNode>("ControlChannelReadCount").Value();

Python

# Determine the current ControlChannelReadCount (int)
value = nodeMapLocalDevice.FindNode("ControlChannelReadCount").Value()