IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Announce the end of registers streaming. This will do a register set validation for consistency and activate it.
Name |
DeviceRegistersStreamingEnd |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Guru |
Values |
- |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute DeviceRegistersStreamingEnd
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("DeviceRegistersStreamingEnd")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("DeviceRegistersStreamingEnd")->WaitUntilDone();
C#
// Execute DeviceRegistersStreamingEnd
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("DeviceRegistersStreamingEnd").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("DeviceRegistersStreamingEnd").WaitUntilDone();
Python
# Execute DeviceRegistersStreamingEnd
nodeMapRemoteDevice.FindNode("DeviceRegistersStreamingEnd").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("DeviceRegistersStreamingEnd").WaitUntilDone()