-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
85 lines (85 loc) · 1.45 KB
/
config.json
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"sensors": [
{
"name": "BME680",
"disabled": true,
"config": { "frequency" : 0.5 }
},
{
"name": "DS18S20",
"disabled": true,
"config": {
"devpath": "/sys/bus/w1/devices/10-00080347f4aa/w1_slave",
"frequency": 0.5
}
},
{
"name": "NetInfo",
"disabled": true,
"config": { "frequency": 0.1 }
},
{
"name": "SysInfo",
"disabled": true,
"config": {
"frequency": 0.2
}
},
{
"name": "TEPT5700",
"disabled": true,
"config": {
"adc_input": 1,
"frequency": 1
}
},
{
"name": "LM335",
"disabled": true,
"config": {
"adc_input": 2,
"frequency": 0.2,
"meta": {
"THIS": "is a free-form data structure you can put anything in",
"IfYouDo": "it will be included in the metadata of the sensor with key 'config_meta'"
}
}
},
{
"name": "LM335",
"disabled": true,
"config": {
"adc_input": 3,
"frequency": 0.2,
"name_append": "A",
"location": "Rows7-9"
}
},
{
"name": "Soil",
"disabled": true,
"config": {
"adc_input": 7,
"frequency": 0.2,
"location": "Desk plant"
}
},
{
"name": "DHTXX",
"disabled": true,
"config": {
"data_pin": 23,
"variant": 11,
"frequency": 0.2
}
},
{
"name": "SPS30",
"disabled": false,
"config": {
"frequency": 0.5,
"shared_object_path": "/home/pi/rpi/env/lib/python2.7/site-packages/rpjios/devices/libsps30.so"
}
}
]
}