ソースを参照

调整使用最后一次设备下发校准值作为新的标定值

datasub12_previous
H Vs 11ヶ月前
コミット
86e93b3d45
1個のファイルの変更9行の追加0行の削除
  1. +9
    -0
      HealthMonitor.Service/Resolver/BloodpressResolver.cs

+ 9
- 0
HealthMonitor.Service/Resolver/BloodpressResolver.cs ファイルの表示

@@ -234,9 +234,18 @@ namespace HealthMonitor.Service.Resolver

var lastPushSystolicRefValue = lastPush!.SystolicRefValue;
var lastPushDiastolicRefValue = lastPush!.SystolicRefValue;


//使用最后一次设备下发校准值作为新的标定值
systolicRefValue = lastPushSystolicRefValue;
diastolicRefValue = lastPushDiastolicRefValue;

// 测量值当作平均值
systolicAvg = bp.SystolicValue;
diastolicAvg = bp.DiastolicValue;



systolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
diastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
#region 更新 gps_persoon remarks 下发增量值到iot


読み込み中…
キャンセル
保存