using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using PepperDash.Essentials.Core; namespace PepperDash.Essentials.Core.CrestronIO { /// /// Describes an output capable of switching on and off /// public interface ISwitchedOutput { BoolFeedback OutputIsOnFeedback {get;} void On(); void Off(); } public interface ISwitchedOutputCollection { Dictionary SwitchedOutputs { get; } } }