Skip to content

Commit

Permalink
align all endl for dev.msg
Browse files Browse the repository at this point in the history
  • Loading branch information
BeamCtrl committed Dec 17, 2023
1 parent 8a59118 commit 41a44b0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions airiana-core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1607,16 +1607,18 @@ def dynamic_pressure_control(self):
if self.inlet_ave > self.indoor_dewpoint + 0.2 and self.pressure_diff != 0 and not self.press_inhibit and not \
self.forecast[1] == -1:
self.set_differential(0)
if "debug" in sys.argv: self.msg += "\nPressure diff to 0%"
if "debug" in sys.argv:
self.msg += "Pressure diff to 0%\n"
if (
self.inlet_ave < self.indoor_dewpoint - 0.1 and self.pressure_diff != 10 and self.inlet_ave < 15 and not self.press_inhibit) or (
self.forecast[-1] == -1 and self.sf == self.ef):
self.set_differential(10)
if "debug" in sys.argv: self.msg += "\nPressure diff to +10%"
if "debug" in sys.argv:
self.msg += "Pressure diff to +10%\n"

def dynamic_fan_control(self):
if not self.inhibit and not self.shower and not self.cool_mode:
# dynamic with RHsensor
# dynamic with RH-sensor
if self.RH_valid:
if self.fanspeed == 1 \
and ((self.extract_ave > self.target + 0.6
Expand Down

0 comments on commit 41a44b0

Please sign in to comment.