Mercurial > templog
annotate web/config.py @ 185:adbf70d1449f
working
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 06 Feb 2014 22:45:16 +0800 |
parents | 632d436d227b |
children | 101c66da848d |
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 | |
164
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
19 SENSOR_NAMES = {'sensor_28 CE B2 1A 03 00 00 99': "Old Fridge", |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
20 'sensor_28 CC C1 1A 03 00 00 D4': "Old Ambient", |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
21 'sensor_28 49 BC 1A 03 00 00 54': "Old 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', |
164
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
25 'sensor_28-0000042cf4dd': "Wort", |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
26 'sensor_28-0000042cccc4': "Fridge", |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
27 'sensor_28-0000042c6dbb': "Ambient", |
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
28 'sensor_internal': "Processor", |
61 | 29 } |
29 | 30 |
61 | 31 SENSOR_COLOURS = {'Wort': 'e49222', |
78 | 32 'Ambient': '028b3d', |
61 | 33 'Voltage': '7db5d3aa', |
124 | 34 'Fridge': '4c40c8', |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
124
diff
changeset
|
35 'Setpoint': '39c662', |
131 | 36 'Cool': 'd7cedd', |
164
632d436d227b
LHS axis scaling easily changeable
Matt Johnston <matt@ucc.asn.au>
parents:
139
diff
changeset
|
37 'Processor': 'bf7a69', |
61 | 38 } |
39 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
40 |
67 | 41 GRAPH_FONT = "Prociono" |
42 #GRAPH_FONT = "URW Gothic L" | |
69 | 43 |
44 # 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
|
45 GRAPH_LEFT_MARGIN = 63 |
83 | 46 |
185 | 47 # 1 hour |
48 CSRF_TIMEOUT = 3600 | |
49 | |
83 | 50 try: |
87 | 51 from localconfig import * |
83 | 52 except ImportError: |
53 pass |