Mercurial > templog
annotate py/config.py @ 459:c34083c078db
uploader works
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 03 Jan 2013 22:37:33 +0800 |
parents | 25bdf95f0e29 |
children | d73077e8cd67 |
rev | line source |
---|---|
447 | 1 |
459 | 2 FRIDGE_SLEEP = 60 |
448
fe729664a5e6
working better. logging works properly, cleanup fridge.off() happens.
Matt Johnston <matt@ucc.asn.au>
parents:
447
diff
changeset
|
3 SENSOR_SLEEP = 15 |
459 | 4 UPLOAD_SLEEP = 80 |
447 | 5 |
459 | 6 FRIDGE_DELAY = 600 # 10 mins |
448
fe729664a5e6
working better. logging works properly, cleanup fridge.off() happens.
Matt Johnston <matt@ucc.asn.au>
parents:
447
diff
changeset
|
7 FRIDGE_WORT_INVALID_TIME = 300 # 5 mins |
444 | 8 |
459 | 9 # 12 hours |
10 MAX_READINGS = 12*60*60 / SENSOR_SLEEP | |
11 | |
447 | 12 PARAMS_FILE = './tempserver.conf' |
13 | |
14 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
|
15 FRIDGE_GPIO = '/sys/devices/virtual/gpio/gpio17' |
452 | 16 WORT_NAME = '28-0000042cf4dd' |
17 FRIDGE_NAME = '28-0000042cccc4' | |
18 AMBIENT_NAME = '28-0000042c6dbb' | |
449
e99559bf188f
internal temperature sensor
Matt Johnston <matt@ucc.asn.au>
parents:
448
diff
changeset
|
19 INTERNAL_TEMPERATURE = '/sys/class/thermal/thermal_zone0/temp' |
459 | 20 |
21 HMAC_KEY = "a key" | |
22 UPDATE_URL = 'https://matt.ucc.asn.au/test/templog/update' | |
23 | |
24 try: | |
25 from localconfig import * | |
26 except ImportError: | |
27 pass |