Mercurial > templog
annotate py/fridge.py @ 535:3a514fbb88eb
ds18b20 works
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 19 May 2015 15:07:57 +0000 |
parents | 9b1d71310c83 |
children | ffe25107d520 |
rev | line source |
---|---|
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
1 # -*- coding: utf-8 -*- |
527 | 2 import asyncio |
3 | |
462 | 4 from utils import L,W,E,EX,D |
439 | 5 import config |
6 | |
527 | 7 import gpio |
8 | |
9 class Fridge(object): | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
10 |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
11 OVERSHOOT_MAX_DIV = 1800.0 # 30 mins |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
12 |
443 | 13 def __init__(self, server): |
14 self.server = server | |
527 | 15 self.gpio = gpio.Gpio(config.FRIDGE_GPIO_PIN, "fridge") |
439 | 16 self.wort_valid_clock = 0 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
17 self.fridge_on_clock = 0 |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
518
diff
changeset
|
18 self.off() |
439 | 19 |
20 def turn(self, value): | |
527 | 21 self.gpio.turn(value) |
439 | 22 |
23 def on(self): | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
24 self.turn(True) |
439 | 25 |
26 def off(self): | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
27 self.turn(False) |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
518
diff
changeset
|
28 self.fridge_off_clock = self.server.now() |
439 | 29 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
30 def is_on(self): |
527 | 31 return self.gpio.get_state() |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
32 |
527 | 33 @asyncio.coroutine |
34 def run(self): | |
461
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
35 if self.server.params.disabled: |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
36 L("Fridge is disabled") |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
37 while True: |
443 | 38 self.do() |
531 | 39 try: |
40 yield from self.server.sleep(config.FRIDGE_SLEEP) | |
41 except Exception as e: | |
42 EX("fridge failed") | |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
43 |
444 | 44 def do(self): |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
45 """ this is the main fridge control logic """ |
443 | 46 wort, fridge = self.server.current_temps() |
439 | 47 |
444 | 48 params = self.server.params |
49 | |
469
de4abcbe8f46
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
467
diff
changeset
|
50 fridge_min = params.fridge_setpoint - params.fridge_range_lower |
de4abcbe8f46
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
467
diff
changeset
|
51 fridge_max = params.fridge_setpoint + params.fridge_range_upper |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
52 |
463
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
53 wort_min = params.fridge_setpoint |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
54 wort_max = params.fridge_setpoint + params.fridge_difference |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
55 |
443 | 56 off_time = self.server.now() - self.fridge_off_clock |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
57 |
476
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
58 if wort is not None: |
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
59 self.wort_valid_clock = self.server.now() |
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
60 |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
518
diff
changeset
|
61 # Safety to avoid bad things happening to the fridge motor (?) |
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
518
diff
changeset
|
62 # When it turns off don't start up again for at least FRIDGE_DELAY |
520
9b98091ca573
Fridge.is_off() wasn't a method
Matt Johnston <matt@ucc.asn.au>
parents:
519
diff
changeset
|
63 if not self.is_on() and off_time < config.FRIDGE_DELAY: |
439 | 64 L("fridge skipping, too early") |
65 return | |
66 | |
461
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
67 if params.disabled: |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
68 if self.is_on(): |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
69 L("Disabled, turning fridge off") |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
70 self.off() |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
71 return |
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
457
diff
changeset
|
72 |
439 | 73 # handle broken wort sensor |
476
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
74 if wort is None: |
443 | 75 invalid_time = self.server.now() - self.wort_valid_clock |
497
455f19b64e0f
Fix invalid wort time check
Matt Johnston <matt@ucc.asn.au>
parents:
477
diff
changeset
|
76 W("Invalid wort sensor for %d secs" % invalid_time) |
439 | 77 if invalid_time < config.FRIDGE_WORT_INVALID_TIME: |
78 W("Has only been invalid for %d, waiting" % invalid_time) | |
79 return | |
80 | |
81 if fridge is None: | |
82 W("Invalid fridge sensor") | |
83 | |
532
9b1d71310c83
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
531
diff
changeset
|
84 D("fridge on %s" % self.is_on()) |
9b1d71310c83
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
531
diff
changeset
|
85 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
86 if self.is_on(): |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
87 turn_off = False |
443 | 88 on_time = self.server.now() - self.fridge_on_clock |
439 | 89 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
90 overshoot = 0 |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
91 if on_time > params.overshoot_delay: |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
92 overshoot = params.overshoot_factor \ |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
93 * min(self.OVERSHOOT_MAX_DIV, on_time) \ |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
94 / self.OVERSHOOT_MAX_DIV |
462 | 95 D("on_time %(on_time)f, overshoot %(overshoot)f" % locals()) |
439 | 96 |
477 | 97 if not params.nowort and wort is not None: |
98 if wort - overshoot < params.fridge_setpoint: | |
463
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
99 L("wort has cooled enough, %(wort)f" % locals() ) |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
100 turn_off = True |
463
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
101 elif fridge is not None and fridge < fridge_min: |
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
102 W("fridge off fallback, fridge %(fridge)f, min %(fridge_min)f" % locals()) |
476
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
103 if wort is None: |
06de0f2ffa26
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
469
diff
changeset
|
104 W("wort has been invalid for %d" % (self.server.now() - self.wort_valid_clock)) |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
105 turn_off = True |
439 | 106 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
107 if turn_off: |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
108 L("Turning fridge off") |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
109 self.off() |
439 | 110 |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
111 else: |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
112 # fridge is off |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
113 turn_on = False |
532
9b1d71310c83
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
531
diff
changeset
|
114 D("fridge %(fridge)f max %(fridge_max)f wort %(wort)f wort_max %(wort_max)f" % locals()) |
467 | 115 if not params.nowort \ |
116 and wort is not None \ | |
117 and wort >= wort_max: | |
462 | 118 L("Wort is too hot %f, max %f" % (wort, wort_max)) |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
119 turn_on = True |
463
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
120 elif fridge is not None and fridge >= fridge_max: |
f2cca8062128
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
462
diff
changeset
|
121 W("frdge on fallback, fridge %(fridge)f, max %(fridge_max)f" % locals()) |
442
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
122 turn_on = True |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
123 |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
124 if turn_on: |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
125 L("Turning fridge on") |
02318c9660cd
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
439
diff
changeset
|
126 self.on() |
457 | 127 self.fridge_on_clock = self.server.now() |