9 lines
252 B
C#
9 lines
252 B
C#
namespace SSPCTester.Devices.Interfaces;
|
|
|
|
public interface ISafetyDio : IDeviceConnection
|
|
{
|
|
Task<bool> ReadInputAsync(int channel, CancellationToken ct = default);
|
|
|
|
Task WriteOutputAsync(int channel, bool on, CancellationToken ct = default);
|
|
}
|