SSPC-Tester/SSPCTester.Devices/Interfaces/ISafetyDio.cs

9 lines
252 B
C#
Raw Normal View History

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