Files
Cardiopulmonarybypasssystems/Cardiopulmonarybypasssystems/Services/IModbusTelemetryService.cs
GukSang.Jin f13674c4fd 更新
2026-03-11 17:36:07 +08:00

14 lines
466 B
C#

using Cardiopulmonarybypasssystems.Models;
namespace Cardiopulmonarybypasssystems.Services;
public interface IModbusTelemetryService
{
IReadOnlyList<DeviceChannel> GetChannels();
IReadOnlyList<PumpControlChannel> GetPumpControls();
IReadOnlyList<ValveControlChannel> GetValveControls();
IReadOnlyList<AlarmMessage> UpdateChannels();
void SetPumpRunning(string pumpKey, bool isRunning);
void SetValveOpen(string valveKey, bool isOpen);
}