IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
By executing the TestEventGenerate command, a test event is generated.
This test event is a packet with a defined structure. It includes the event id 0x4FFF and the camera timestamp. The test event is not included in the EventSelector since the notification of this event is always enabled.
Name |
TestEventGenerate |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Guru |
Values |
- |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute TestEventGenerate
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("TestEventGenerate")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("TestEventGenerate")->WaitUntilDone();
C#
// Execute TestEventGenerate
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("TestEventGenerate").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("TestEventGenerate").WaitUntilDone();
Python
# Execute TestEventGenerate
nodeMapRemoteDevice.FindNode("TestEventGenerate").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("TestEventGenerate").WaitUntilDone()