Files
Essentials/src/PepperDash.Essentials.Core/CrestronIO/IDigitalOutput.cs
2025-07-27 21:35:43 -04:00

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);
}
}