去掉温度-1.5

This commit is contained in:
maqiao 2025-02-10 14:53:48 +08:00
parent ae1179c247
commit ed5850523b
1 changed files with 2 additions and 2 deletions

View File

@ -276,7 +276,7 @@ namespace DM_Weight.ViewModels
byte[] data = null;
float retT = await _portUtil.GetFridgeTemperature();
Thread.Sleep(80);
WD = $"恒温冷藏抽屉当前温度:{Math.Round((retT - 1.5), 2)}℃";
WD = $"恒温冷藏抽屉当前温度:{Math.Round((retT), 2)}℃";
}
}
@ -288,7 +288,7 @@ namespace DM_Weight.ViewModels
byte[] data = null;
float retT = await _portUtil.GetFridgeTemperature();
Thread.Sleep(80);
WD = $"恒温冷藏抽屉当前温度:{Math.Round((retT-1.5),2)}℃";
WD = $"恒温冷藏抽屉当前温度:{Math.Round((retT),2)}℃";
}
}
/// <summary>