Adds VGA brightness and contrast feedback/control to DM-TX-201-C

This commit is contained in:
Neil Dorin 2020-02-18 20:45:01 -07:00
parent 73ab16ce55
commit 3e16cbb092
3 changed files with 48 additions and 4 deletions

View file

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