using PepperDash.Essentials.Core.Feedbacks; namespace PepperDash.Essentials.Core.CrestronIO { /// /// Represents a device that provides digital input /// public interface IDigitalOutput { BoolFeedback OutputStateFeedback { get; } void SetOutput(bool state); } }