using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core.CrestronIO
{
///
/// Represents a device that provides digital input
///
public interface IDigitalOutput
{
///
/// Feedback to indicate the state of the output
///
BoolFeedback OutputStateFeedback { get; }
///
/// Sets the output state
///
/// The desired state of the output
void SetOutput(bool state);
}
}