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