mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
16 lines
372 B
C#
16 lines
372 B
C#
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; }
|
|
}
|
|
} |