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); } /// /// Defines a device capable of adjusting VGA settings /// public interface IVgaBrightnessContrastControls { IntFeedback VgaBrightnessFeedback { get; } IntFeedback VgaContrastFeedback { get; } void SetVgaBrightness(ushort level); void SetVgaContrast(ushort level); } }