15 lines
359 B
C#
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
|
|
}
|
|
}
|
|
} |