Files
Essentials/src/PepperDash.Essentials.Core/CrestronIO/IDigitalOutput.cs
2023-10-31 20:10:14 -04:00

17 lines
395 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 IDigitalOutput
{
BoolFeedback OutputStateFeedback { get; }
void SetOutput(bool state);
}
}