This commit is contained in:
xyy
2026-03-25 21:34:41 +08:00
parent 01a07f8811
commit dd0bd405ee
11 changed files with 555 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
using MembranePoreTester.Models;
namespace MembranePoreTester.Services
{
public interface IHardwareService
{
// 读取设备全部参数
DeviceDataModel LoadDeviceData();
// 保存设备全部参数
void SaveDeviceData(DeviceDataModel data);
// 控制命令
void Reset();
void OpenLeftEye();
void OpenRightEye();
void ReverseMotor();
void ForwardMotor();
// 可扩展其他方法...
}
}