Selaa lähdekoodia

modify params

chenhaiyang 5 vuotta sitten
vanhempi
commit
714e6f72e5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      alarm.py

+ 1 - 1
alarm.py

@@ -38,7 +38,7 @@ class FanCoilUnitAlarm(Alarm):
 
                 air_temp_diff = self.get('return_air_temp') - abs(self.get('supply_air_temp'))
                 water_temp_diff = self.get('water_out_temp') - abs(self.get('water_in_temp'))
-                if air_temp_diff > 15 and water_temp_diff < 1.5:
+                if air_temp_diff > 13 and water_temp_diff < 1.5:
                     self.set_alarm(1)
 
         return