去掉温度-1.5
This commit is contained in:
parent
ae1179c247
commit
ed5850523b
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue