Adds FreeRun support for DM-TX-201-C. Need to test on NYC hardware and then apply to other TX classes.

This commit is contained in:
Neil Dorin 2020-02-18 20:09:51 -07:00
parent 65b95006be
commit 73ab16ce55
3 changed files with 52 additions and 3 deletions

View file

@ -0,0 +1,20 @@
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);
}
}