namespace GPIORaspberryPI4;
public interface IRelayOutput : IDisposable
{
void On();
void Off();
void Set(bool on);
bool IsOn { get; }
}