IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the mean runtime of control channel read commands since the device was opened. The runtime is the time between sending the command and receiving the acknowledgment.
Name |
ControlChannelReadRuntimeMean |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
ms |
Visibility |
Expert |
Values |
unsigned int 4-byte |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code Example
C++
// Determine the current ControlChannelReadRuntimeMean
int64_t value = nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("ControlChannelReadRuntimeMean")->Value();
C#
// Determine the current ControlChannelReadRuntimeMean
long value = nodeMapLocalDevice.FindNode<peak.core.nodes.IntegerNode>("ControlChannelReadRuntimeMean").Value();
Python
# Determine the current ControlChannelReadRuntimeMean (int)
value = nodeMapLocalDevice.FindNode("ControlChannelReadRuntimeMean").Value()