Interface IDigitalOutputPort
Contract for ports that are capable of writing digital outputs.
Assembly: Meadow.Contracts.dll
View Source
public interface IDigitalOutputPort : IDigitalPort, IPort<IDigitalChannelInfo>, IDisposable
Properties
InitialState
Gets the initial state of the port, either low (false) or high (true), as typically configured during the port's constructor.
View Source
bool InitialState { get; }
State
Gets or sets the state of the port.
View Source
bool State { get; set; }