Execute command.gpio write Property

Writes the digital output to a video capture device.
Usage::
[C#]
ICogImagingDeviceAccess.ExecuteCommand("gpio write");
Remarks:

Some camera models are equipped with a general purpose output. The "gpio write" advises the camera to perform a write out on this input. The Link target "Features: gpio gp out range" not found! is used to write a value on the output, before this command is executed.

Example:

The following example shows the sequence of reading out the digital input.

[C#]
ICogImagingDeviceAccess Feature = Camera.OwnedImagingDeviceAccess; try { Feature.SetFeature("gpio gp out range","1"); Feature.ExecuteCommand("gpio write"); } catch (Exception Ex) { MessageBox.Show(Ex.Message); }
See also: Link target "Features: gpio gp out range" not found!

<< Execute Commands