Mercurial > templog
annotate py/fridge.py @ 639:89818a14648b rust tip
- switch to using anyhow for errors, surf for http
runs but surf has problems
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 28 Nov 2019 23:57:00 +0800 |
parents | 6848907f85be |
children | 6087c692d381 |
rev | line source |
---|---|
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
1 # -*- coding: utf-8 -*- |
228 | 2 import asyncio |
3 | |
163 | 4 from utils import L,W,E,EX,D |
141 | 5 import config |
6 | |
228 | 7 import gpio |
271 | 8 import utils |
228 | 9 |
10 class Fridge(object): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
11 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
12 OVERSHOOT_MAX_DIV = 1800.0 # 30 mins |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
13 |
266
20c89630be6c
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
259
diff
changeset
|
14 def __init__(self, server, nowait = False): |
144 | 15 self.server = server |
228 | 16 self.gpio = gpio.Gpio(config.FRIDGE_GPIO_PIN, "fridge") |
271 | 17 self.integrator = utils.StepIntegrator(self.server.now, self.server.params.overshoot_delay) |
141 | 18 self.wort_valid_clock = 0 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
19 self.fridge_on_clock = 0 |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
20 self.off() |
266
20c89630be6c
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
259
diff
changeset
|
21 if nowait: |
20c89630be6c
emergency change sensor config
Matt Johnston <matt@ucc.asn.au>
parents:
259
diff
changeset
|
22 self.fridge_off_clock = 0 |
141 | 23 |
24 def turn(self, value): | |
228 | 25 self.gpio.turn(value) |
271 | 26 self.integrator.turn(value) |
141 | 27 |
28 def on(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
29 self.turn(True) |
141 | 30 |
31 def off(self): | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
32 self.turn(False) |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
33 self.fridge_off_clock = self.server.now() |
141 | 34 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
35 def is_on(self): |
228 | 36 return self.gpio.get_state() |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
37 |
228 | 38 @asyncio.coroutine |
39 def run(self): | |
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
40 if self.server.params.disabled: |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
41 L("Fridge is disabled") |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
42 while True: |
232 | 43 try: |
254
ffe25107d520
put more things inside "try"
Matt Johnston <matt@ucc.asn.au>
parents:
233
diff
changeset
|
44 self.do() |
232 | 45 yield from self.server.sleep(config.FRIDGE_SLEEP) |
46 except Exception as e: | |
47 EX("fridge failed") | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
48 |
145 | 49 def do(self): |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
50 """ this is the main fridge control logic """ |
144 | 51 wort, fridge = self.server.current_temps() |
141 | 52 |
145 | 53 params = self.server.params |
54 | |
170
78255c49bf9a
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
168
diff
changeset
|
55 fridge_min = params.fridge_setpoint - params.fridge_range_lower |
78255c49bf9a
make fridge air range a parameter
Matt Johnston <matt@ucc.asn.au>
parents:
168
diff
changeset
|
56 fridge_max = params.fridge_setpoint + params.fridge_range_upper |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
57 |
166
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
58 wort_min = params.fridge_setpoint |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
59 wort_max = params.fridge_setpoint + params.fridge_difference |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
60 |
144 | 61 off_time = self.server.now() - self.fridge_off_clock |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
62 |
177
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
63 if wort is not None: |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
64 self.wort_valid_clock = self.server.now() |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
65 |
271 | 66 self.integrator.set_limit(params.overshoot_delay) |
67 | |
220
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
68 # Safety to avoid bad things happening to the fridge motor (?) |
251524081924
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
69 # When it turns off don't start up again for at least FRIDGE_DELAY |
221
720809f6c968
Fridge.is_off() wasn't a method
Matt Johnston <matt@ucc.asn.au>
parents:
220
diff
changeset
|
70 if not self.is_on() and off_time < config.FRIDGE_DELAY: |
141 | 71 L("fridge skipping, too early") |
72 return | |
73 | |
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
74 if params.disabled: |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
75 if self.is_on(): |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
76 L("Disabled, turning fridge off") |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
77 self.off() |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
78 return |
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
158
diff
changeset
|
79 |
141 | 80 # handle broken wort sensor |
177
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
81 if wort is None: |
144 | 82 invalid_time = self.server.now() - self.wort_valid_clock |
197
3f187baa3439
Fix invalid wort time check
Matt Johnston <matt@ucc.asn.au>
parents:
178
diff
changeset
|
83 W("Invalid wort sensor for %d secs" % invalid_time) |
141 | 84 if invalid_time < config.FRIDGE_WORT_INVALID_TIME: |
85 W("Has only been invalid for %d, waiting" % invalid_time) | |
86 return | |
87 | |
88 if fridge is None: | |
89 W("Invalid fridge sensor") | |
90 | |
233
19569cb5ed46
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
232
diff
changeset
|
91 D("fridge on %s" % self.is_on()) |
19569cb5ed46
better arg parser. seems close to ready
Matt Johnston <matt@ucc.asn.au>
parents:
232
diff
changeset
|
92 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
93 if self.is_on(): |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
94 turn_off = False |
279
6848907f85be
fix missing on_time variable
Matt Johnston <matt@ucc.asn.au>
parents:
272
diff
changeset
|
95 on_time = self.integrator.integrate() |
6848907f85be
fix missing on_time variable
Matt Johnston <matt@ucc.asn.au>
parents:
272
diff
changeset
|
96 on_percent = on_time / params.overshoot_delay |
141 | 97 |
272
af924d27140f
scale integrate by delay time
Matt Johnston <matt@ucc.asn.au>
parents:
271
diff
changeset
|
98 overshoot = params.overshoot_factor * on_percent |
af924d27140f
scale integrate by delay time
Matt Johnston <matt@ucc.asn.au>
parents:
271
diff
changeset
|
99 D("on_time %(on_percent)f, overshoot %(overshoot)f" % locals()) |
141 | 100 |
178 | 101 if not params.nowort and wort is not None: |
102 if wort - overshoot < params.fridge_setpoint: | |
269 | 103 max_div = self.OVERSHOOT_MAX_DIV |
104 overshoot_factor = params.overshoot_factor | |
105 L("wort has cooled enough, %(wort)fº (overshoot %(overshoot)fº = %(overshoot_factor)f * min(%(on_time)f) / %(max_div)f)" % locals() ) | |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
106 turn_off = True |
166
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
107 elif fridge is not None and fridge < fridge_min: |
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
108 W("fridge off fallback, fridge %(fridge)f, min %(fridge_min)f" % locals()) |
177
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
109 if wort is None: |
a0ea542256ba
workaround for invalid wort time
Matt Johnston <matt@ucc.asn.au>
parents:
170
diff
changeset
|
110 W("wort has been invalid for %d" % (self.server.now() - self.wort_valid_clock)) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
111 turn_off = True |
141 | 112 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
113 if turn_off: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
114 L("Turning fridge off") |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
115 self.off() |
141 | 116 |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
117 else: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
118 # fridge is off |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
119 turn_on = False |
254
ffe25107d520
put more things inside "try"
Matt Johnston <matt@ucc.asn.au>
parents:
233
diff
changeset
|
120 D("fridge %(fridge)s max %(fridge_max)s wort %(wort)s wort_max %(wort_max)s" % locals()) |
168 | 121 if not params.nowort \ |
122 and wort is not None \ | |
123 and wort >= wort_max: | |
163 | 124 L("Wort is too hot %f, max %f" % (wort, wort_max)) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
125 turn_on = True |
166
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
126 elif fridge is not None and fridge >= fridge_max: |
5d5424acfed0
- use the fridge temperature for control too, keep it in a 6deg band
Matt Johnston <matt@ucc.asn.au>
parents:
163
diff
changeset
|
127 W("frdge on fallback, fridge %(fridge)f, max %(fridge_max)f" % locals()) |
143
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
128 turn_on = True |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
129 |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
130 if turn_on: |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
131 L("Turning fridge on") |
0895f5ad7731
copied fridge logic from main.c
Matt Johnston <matt@ucc.asn.au>
parents:
141
diff
changeset
|
132 self.on() |
158 | 133 self.fridge_on_clock = self.server.now() |