-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig_io.example
More file actions
40 lines (40 loc) · 876 Bytes
/
config_io.example
File metadata and controls
40 lines (40 loc) · 876 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
{
"channels": {
"temp": {
"description": "Temp",
"display_name": "Temp",
"properties": {
"data_type": "TEMPERATURE",
"data_unit": "DEG_CELSIUS",
"device_diagnostic": false,
"max": null,
"min": null,
"precision": 3
}
},
"humid": {
"description": "Humidity",
"display_name": "Humidity",
"properties": {
"data_type": "HUMIDITY",
"data_unit": "PERCENT",
"device_diagnostic": false,
"max": null,
"min": null,
"precision": 3
}
},
"press": {
"description": "Pressure",
"display_name": "Pressure",
"properties": {
"data_type": "PRESSURE",
"data_unit": "MIL_BAR",
"device_diagnostic": false,
"max": null,
"min": null,
"precision": 3
}
}
}
}