feat: removed crestron io devices

This commit is contained in:
Nick Genovese 2023-10-31 10:25:28 -04:00
parent e1eb432dee
commit b4911bfda1
44 changed files with 0 additions and 4912 deletions

View file

@ -0,0 +1,17 @@
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 IDigitalOutput
{
BoolFeedback OutputStateFeedback { get; }
void SetOutput(bool state);
}
}