annotate py/config.py @ 228:d9e81a563923

porting to asyncio
author Matt Johnston <matt@ucc.asn.au>
date Fri, 20 Mar 2015 20:12:25 +0800
parents 251524081924
children 0a1b642e3086
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
b32e5a11a4cb few updates, seems to run
Matt Johnston <matt@ucc.asn.au>
parents: 145
diff changeset
2
220
251524081924 make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents: 176
diff changeset
3 FRIDGE_SLEEP = 60 # this value works. may affect the algorithm
251524081924 make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents: 176
diff changeset
4 SENSOR_SLEEP = 15 # same for this.
251524081924 make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents: 176
diff changeset
5 UPLOAD_SLEEP = 83 # nice and prime
148
b32e5a11a4cb few updates, seems to run
Matt Johnston <matt@ucc.asn.au>
parents: 145
diff changeset
6
220
251524081924 make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents: 176
diff changeset
7 FRIDGE_DELAY = 600 # 10 mins, to avoid fridge damage from frequent cycling off/on
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
6517ddee3187 few more bits
Matt Johnston <matt@ucc.asn.au>
parents: 144
diff changeset
9
220
251524081924 make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents: 176
diff changeset
10 # 12 hours of "offline" readings stored
160
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
11 MAX_READINGS = 12*60*60 / SENSOR_SLEEP
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
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
b32e5a11a4cb few updates, seems to run
Matt Johnston <matt@ucc.asn.au>
parents: 145
diff changeset
14
b32e5a11a4cb few updates, seems to run
Matt Johnston <matt@ucc.asn.au>
parents: 145
diff changeset
15 SENSOR_BASE_DIR = '/sys/devices/w1_bus_master1'
228
d9e81a563923 porting to asyncio
Matt Johnston <matt@ucc.asn.au>
parents: 220
diff changeset
16 FRIDGE_GPIO_PIN = 17
153
0529f3527626 config for sensor IDs
Matt Johnston <matt@ucc.asn.au>
parents: 151
diff changeset
17 WORT_NAME = '28-0000042cf4dd'
0529f3527626 config for sensor IDs
Matt Johnston <matt@ucc.asn.au>
parents: 151
diff changeset
18 FRIDGE_NAME = '28-0000042cccc4'
0529f3527626 config for sensor IDs
Matt Johnston <matt@ucc.asn.au>
parents: 151
diff changeset
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
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
21
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
22 HMAC_KEY = "a key"
176
ccebadce4619 back to evil URL
Matt Johnston <matt@ucc.asn.au>
parents: 162
diff changeset
23 #UPDATE_URL = 'https://matt.ucc.asn.au/test/templog/update'
ccebadce4619 back to evil URL
Matt Johnston <matt@ucc.asn.au>
parents: 162
diff changeset
24 UPDATE_URL = 'https://evil.ucc.asn.au/~matt/templog/update'
160
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
25
220
251524081924 make the fridge off timer more robust
Matt Johnston <matt@ucc.asn.au>
parents: 176
diff changeset
26 # site-local values overridden in localconfig, eg WORT_NAME, HMAC_KEY
160
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
27 try:
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
28 from localconfig import *
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
29 except ImportError:
256505f98c4d uploader works
Matt Johnston <matt@ucc.asn.au>
parents: 153
diff changeset
30 pass