Files
CSI-Z420-Tablet-Multi-Funct…/Services/BalanceService.cs
2026-05-05 15:31:24 +08:00

15 lines
359 B
C#

using System;
using System.Threading.Tasks;
namespace TabletTester2025.Services
{
public class BalanceService
{
// 实际项目中请使用串口通讯
public async Task<double> ReadWeightAsync()
{
await Task.Delay(100);
return new Random().NextDouble() * 10; // 模拟重量 0-10g
}
}
}