Mercurial > templog
view py/fridge.py @ 253:0a1b642e3086
long polling config updates
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 08 Jun 2015 22:29:46 +0800 |
parents | 19569cb5ed46 |
children | ffe25107d520 |
line wrap: on
line source
# -*- coding: utf-8 -*- import asyncio from utils import L,W,E,EX,D import config import gpio class Fridge(object): OVERSHOOT_MAX_DIV = 1800.0 # 30 mins def __init__(self, server): self.server = server self.gpio = gpio.Gpio(config.FRIDGE_GPIO_PIN, "fridge") self.wort_valid_clock = 0 self.fridge_on_clock = 0 self.off() def turn(self, value): self.gpio.turn(value) def on(self): self.turn(True) def off(self): self.turn(False) self.fridge_off_clock = self.server.now() def is_on(self): return self.gpio.get_state() @asyncio.coroutine def run(self): if self.server.params.disabled: L("Fridge is disabled") while True: self.do() try: yield from self.server.sleep(config.FRIDGE_SLEEP) except Exception as e: EX("fridge failed") def do(self): """ this is the main fridge control logic """ wort, fridge = self.server.current_temps() params = self.server.params fridge_min = params.fridge_setpoint - params.fridge_range_lower fridge_max = params.fridge_setpoint + params.fridge_range_upper wort_min = params.fridge_setpoint wort_max = params.fridge_setpoint + params.fridge_difference off_time = self.server.now() - self.fridge_off_clock if wort is not None: self.wort_valid_clock = self.server.now() # Safety to avoid bad things happening to the fridge motor (?) # When it turns off don't start up again for at least FRIDGE_DELAY if not self.is_on() and off_time < config.FRIDGE_DELAY: L("fridge skipping, too early") return if params.disabled: if self.is_on(): L("Disabled, turning fridge off") self.off() return # handle broken wort sensor if wort is None: invalid_time = self.server.now() - self.wort_valid_clock W("Invalid wort sensor for %d secs" % invalid_time) if invalid_time < config.FRIDGE_WORT_INVALID_TIME: W("Has only been invalid for %d, waiting" % invalid_time) return if fridge is None: W("Invalid fridge sensor") D("fridge on %s" % self.is_on()) if self.is_on(): turn_off = False on_time = self.server.now() - self.fridge_on_clock overshoot = 0 if on_time > params.overshoot_delay: overshoot = params.overshoot_factor \ * min(self.OVERSHOOT_MAX_DIV, on_time) \ / self.OVERSHOOT_MAX_DIV D("on_time %(on_time)f, overshoot %(overshoot)f" % locals()) if not params.nowort and wort is not None: if wort - overshoot < params.fridge_setpoint: L("wort has cooled enough, %(wort)f" % locals() ) turn_off = True elif fridge is not None and fridge < fridge_min: W("fridge off fallback, fridge %(fridge)f, min %(fridge_min)f" % locals()) if wort is None: W("wort has been invalid for %d" % (self.server.now() - self.wort_valid_clock)) turn_off = True if turn_off: L("Turning fridge off") self.off() else: # fridge is off turn_on = False D("fridge %(fridge)f max %(fridge_max)f wort %(wort)f wort_max %(wort_max)f" % locals()) if not params.nowort \ and wort is not None \ and wort >= wort_max: L("Wort is too hot %f, max %f" % (wort, wort_max)) turn_on = True elif fridge is not None and fridge >= fridge_max: W("frdge on fallback, fridge %(fridge)f, max %(fridge_max)f" % locals()) turn_on = True if turn_on: L("Turning fridge on") self.on() self.fridge_on_clock = self.server.now()