Mercurial > templog
annotate py/config.py @ 519:838e868a046e
make the fridge off timer more robust
add a few comments
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 19 Dec 2014 22:32:59 +0800 |
parents | 6af0dcc5da45 |
children | d9e81a563923 |
rev | line source |
---|---|
461
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
459
diff
changeset
|
1 import os.path |
447 | 2 |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
475
diff
changeset
|
3 FRIDGE_SLEEP = 60 # this value works. may affect the algorithm |
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
475
diff
changeset
|
4 SENSOR_SLEEP = 15 # same for this. |
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
475
diff
changeset
|
5 UPLOAD_SLEEP = 83 # nice and prime |
447 | 6 |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
475
diff
changeset
|
7 FRIDGE_DELAY = 600 # 10 mins, to avoid fridge damage from frequent cycling off/on |
448
fe729664a5e6
working better. logging works properly, cleanup fridge.off() happens.
Matt Johnston <matt@ucc.asn.au>
parents:
447
diff
changeset
|
8 FRIDGE_WORT_INVALID_TIME = 300 # 5 mins |
444 | 9 |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
475
diff
changeset
|
10 # 12 hours of "offline" readings stored |
459 | 11 MAX_READINGS = 12*60*60 / SENSOR_SLEEP |
12 | |
461
1eb68df9f8ab
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
459
diff
changeset
|
13 PARAMS_FILE = os.path.join(os.path.dirname(__file__), 'tempserver.conf') |
447 | 14 |
15 SENSOR_BASE_DIR = '/sys/devices/w1_bus_master1' | |
448
fe729664a5e6
working better. logging works properly, cleanup fridge.off() happens.
Matt Johnston <matt@ucc.asn.au>
parents:
447
diff
changeset
|
16 FRIDGE_GPIO = '/sys/devices/virtual/gpio/gpio17' |
452 | 17 WORT_NAME = '28-0000042cf4dd' |
18 FRIDGE_NAME = '28-0000042cccc4' | |
19 AMBIENT_NAME = '28-0000042c6dbb' | |
449
e99559bf188f
internal temperature sensor
Matt Johnston <matt@ucc.asn.au>
parents:
448
diff
changeset
|
20 INTERNAL_TEMPERATURE = '/sys/class/thermal/thermal_zone0/temp' |
459 | 21 |
22 HMAC_KEY = "a key" | |
475 | 23 #UPDATE_URL = 'https://matt.ucc.asn.au/test/templog/update' |
24 UPDATE_URL = 'https://evil.ucc.asn.au/~matt/templog/update' | |
459 | 25 |
519
838e868a046e
make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents:
475
diff
changeset
|
26 # site-local values overridden in localconfig, eg WORT_NAME, HMAC_KEY |
459 | 27 try: |
28 from localconfig import * | |
29 except ImportError: | |
30 pass |