Mercurial > templog
annotate web/config.py @ 158:a6612745b4a3
fix fridge_on_time
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 08 Jan 2013 22:31:12 +0800 |
parents | 94330d90f11f |
children | 632d436d227b |
rev | line source |
---|---|
82
0f7c005b3f87
move server config into config.py
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
1 # for server |
0f7c005b3f87
move server config into config.py
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
2 BTADDR = "00:12:03:27:70:88" |
139 | 3 SLEEP_TIME = 60 |
4 SERIAL_HOST='home.example.com' | |
5 SERIAL_PORT=1999 | |
28 | 6 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
7 DATA_PATH = '/home/matt/templog/web/data' |
28 | 8 |
83 | 9 HMAC_KEY = 'a hmac key' # override in local config file |
28 | 10 |
89
51d889ad39a3
main.c : add a delay before turning on uart
Matt Johnston <matt@ucc.asn.au>
parents:
87
diff
changeset
|
11 UPDATE_URL = 'http://evil.ucc.asn.au/~matt/templog/update' |
33 | 12 |
78 | 13 GRAPH_WIDTH = 1200 |
14 GRAPH_HEIGHT = 600 | |
15 ZOOM = 1 | |
29 | 16 |
17 LINE_WIDTH = 2 | |
18 | |
124 | 19 SENSOR_NAMES = {'sensor_28 CE B2 1A 03 00 00 99': "Fridge", |
78 | 20 'sensor_28 CC C1 1A 03 00 00 D4': "Ambient", |
124 | 21 'sensor_28 49 BC 1A 03 00 00 54': "Wort", |
61 | 22 'sensor_voltage': 'Voltage', |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
124
diff
changeset
|
23 'sensor_fridge_setpoint': 'Setpoint', |
131 | 24 'sensor_fridge_on': 'Cool', |
61 | 25 } |
29 | 26 |
61 | 27 SENSOR_COLOURS = {'Wort': 'e49222', |
78 | 28 'Ambient': '028b3d', |
61 | 29 'Voltage': '7db5d3aa', |
124 | 30 'Fridge': '4c40c8', |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
124
diff
changeset
|
31 'Setpoint': '39c662', |
131 | 32 'Cool': 'd7cedd', |
61 | 33 } |
34 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
35 |
67 | 36 GRAPH_FONT = "Prociono" |
37 #GRAPH_FONT = "URW Gothic L" | |
69 | 38 |
39 # determine by zooming in an image viewer | |
73
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
40 GRAPH_LEFT_MARGIN = 63 |
83 | 41 |
42 try: | |
87 | 43 from localconfig import * |
83 | 44 except ImportError: |
45 pass |