Skip to main content

Interface IDigitalOutputPort

Contract for ports that are capable of writing digital outputs.

Assembly: Meadow.Contracts.dll​
View Source​
Declaration
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​
Declaration
bool InitialState { get; }

State​

Gets or sets the state of the port.

View Source​
Declaration
bool State { get; set; }