mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
13 lines
326 B
C#
13 lines
326 B
C#
using PepperDash.Essentials.Core.Feedbacks;
|
|
|
|
namespace PepperDash.Essentials.Core.CrestronIO
|
|
{
|
|
/// <summary>
|
|
/// Represents a device that provides digital input
|
|
/// </summary>
|
|
public interface IDigitalOutput
|
|
{
|
|
BoolFeedback OutputStateFeedback { get; }
|
|
void SetOutput(bool state);
|
|
}
|
|
} |