using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using PepperDash.Essentials.Core; namespace PepperDash.Essentials.DM { /// /// Defines a device capable of setting the Free Run state of a VGA input and reporting feedback /// public interface IHasFreeRun { BoolFeedback FreeRunEnabledFeedback { get; } void SetFreeRunEnabled(bool enable); } }