Mercurial > templog
annotate py/config.py @ 203:11a1b59b0624
Move old stuff to its own place
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 30 Mar 2014 20:21:56 +0800 |
parents | ccebadce4619 |
children | 251524081924 |
rev | line source |
---|---|
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
160
diff
changeset
|
1 import os.path |
148 | 2 |
160 | 3 FRIDGE_SLEEP = 60 |
149
d686b111dab4
working better. logging works properly, cleanup fridge.off() happens.
Matt Johnston <matt@ucc.asn.au>
parents:
148
diff
changeset
|
4 SENSOR_SLEEP = 15 |
160 | 5 UPLOAD_SLEEP = 80 |
148 | 6 |
160 | 7 FRIDGE_DELAY = 600 # 10 mins |
149
d686b111dab4
working better. logging works properly, cleanup fridge.off() happens.
Matt Johnston <matt@ucc.asn.au>
parents:
148
diff
changeset
|
8 FRIDGE_WORT_INVALID_TIME = 300 # 5 mins |
145 | 9 |
160 | 10 # 12 hours |
11 MAX_READINGS = 12*60*60 / SENSOR_SLEEP | |
12 | |
162
d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
Matt Johnston <matt@ucc.asn.au>
parents:
160
diff
changeset
|
13 PARAMS_FILE = os.path.join(os.path.dirname(__file__), 'tempserver.conf') |
148 | 14 |
15 SENSOR_BASE_DIR = '/sys/devices/w1_bus_master1' | |
149
d686b111dab4
working better. logging works properly, cleanup fridge.off() happens.
Matt Johnston <matt@ucc.asn.au>
parents:
148
diff
changeset
|
16 FRIDGE_GPIO = '/sys/devices/virtual/gpio/gpio17' |
153 | 17 WORT_NAME = '28-0000042cf4dd' |
18 FRIDGE_NAME = '28-0000042cccc4' | |
19 AMBIENT_NAME = '28-0000042c6dbb' | |
151
e114b38c8a55
internal temperature sensor
Matt Johnston <matt@ucc.asn.au>
parents:
149
diff
changeset
|
20 INTERNAL_TEMPERATURE = '/sys/class/thermal/thermal_zone0/temp' |
160 | 21 |
22 HMAC_KEY = "a key" | |
176 | 23 #UPDATE_URL = 'https://matt.ucc.asn.au/test/templog/update' |
24 UPDATE_URL = 'https://evil.ucc.asn.au/~matt/templog/update' | |
160 | 25 |
26 try: | |
27 from localconfig import * | |
28 except ImportError: | |
29 pass |