mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-14 20:24:57 +00:00
feat: renamed CrestronIO folder
This commit is contained in:
17
src/PepperDash.Essentials.Core/CrestronIO/IDigitalOutput.cs
Normal file
17
src/PepperDash.Essentials.Core/CrestronIO/IDigitalOutput.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user