Skip to content

Commit

Permalink
fix: センサーがドリフトし始めたので閾値を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
kimata committed Dec 22, 2023
1 parent 642edb1 commit a368375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask/lib/valve.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def control_worker(config, queue):
period_sec = valve_time() - time_open_start

# NOTE: バルブが閉じられた後,流量が 0 になっていたらトータル流量を報告する
if flow < 0.03:
if flow < 0.15:
count_zero += 1

if flow > FLOW_ERROR_TH:
Expand Down

0 comments on commit a368375

Please sign in to comment.