Returns the mean runtime of control channel write commands since the device was opened. The runtime is the time between sending the command and receiving the acknowledgment.
Name |
ControlChannelWriteRuntimeMean |
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 ControlChannelWriteRuntimeMean
int64_t value = nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("ControlChannelWriteRuntimeMean")->Value();
C#
// Determine the current ControlChannelWriteRuntimeMean
long value = nodeMapLocalDevice.FindNode<peak.core.nodes.IntegerNode>("ControlChannelWriteRuntimeMean").Value();
Python
# Determine the current ControlChannelWriteRuntimeMean (int)
value = nodeMapLocalDevice.FindNode("ControlChannelWriteRuntimeMean").Value()