Browse Source

fix some bugs

chenhaiyang 4 năm trước cách đây
mục cha
commit
15fb01ba46
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      app/controllers/equipment/fcu/on_ratio.py

+ 1 - 1
app/controllers/equipment/fcu/on_ratio.py

@@ -27,7 +27,7 @@ class OnRatioController:
         if self.target < self.return_air:
             mode = 'off'
         else:
-            if self.target - self.return_air > 1:
+            if self.target - self.return_air > 1.5:
                 mode = 'normal'
             else:
                 mode = 'on_ratio'