feat: removed crestron io devices

This commit is contained in:
Nick Genovese
2023-10-31 10:25:28 -04:00
parent 9b4a33f3b9
commit edefe0a0bf
45 changed files with 4 additions and 4898 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core.CrestronIO
{
/// <summary>
/// Represents a device that provides digital input
/// </summary>
public interface IDigitalInput
{
BoolFeedback InputStateFeedback { get; }
}
}