Innovenergy_trunk/csharp/Lib/Devices/GPIORaspberryPI4/IDigitalInput.cs

8 lines
142 B
C#

namespace GPIORaspberryPI4;
public interface IDigitalInput : IDisposable
{
int Pin { get; }
bool IsActive { get; }
bool Read();
}