-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMECS.ini.template
More file actions
61 lines (47 loc) · 933 Bytes
/
MECS.ini.template
File metadata and controls
61 lines (47 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[data-acquisition]
calibration_file = /home/pi/calibration.ini
[board]
type = DC
calibration_samples = 25
[ADCPi]
bit_rate = 16
input_impedance = 16800
[MECS]
root_folder = /home/pi/data
output_folder = raw
aggregated_folder = aggregated
archive_folder = uploaded
[MECS-SERVER]
username =
host =
port = 22
destination_root = data
[git]
branch = master
source_folder =
install = False
[loggers]
keys = root, MECS
[handlers]
keys = console, file
[formatters]
keys = generic
[logger_root]
handlers = console
[logger_MECS]
level = DEBUG
handlers = console, file
qualname = MECS
propagate = 0
[handler_console]
class = StreamHandler
args = (sys.stdout,)
level = NOTSET
formatter = generic
[handler_file]
class = handlers.RotatingFileHandler
args = ("/home/pi/logs/MECS.log", 'a', 100000, 5)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s