MultiCamOutputState

Description

Possible state of output pin.

Values of this enumeration:

  • LOW - A low logic state is issued or the solid-state relay is closed
  • HIGH - A high logic state is issued or the solid-state relay is open
  • TOGGLE - A logic state opposite to the present one is issued

namespace MultiCamOutputState
{
	enum Type
	{
		LOW,
		HIGH,
		TOGGLE
	};
}