-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
56 lines (56 loc) · 1.46 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
{
"name": "VBus",
"version": "2022.06",
"slug": "vbus",
"description": "Addon for collecting and displaying data from Resol VBus devices.",
"arch": ["armv7", "aarch64", "amd64"],
"image": "ghcr.io/tripplet/hassio-vbus-{arch}",
"uart": true,
"privileged": ["SYS_RAWIO"],
"init": false,
"ingress": true,
"panel_icon": "mdi:chart-bell-curve",
"homeassistant_api": true,
"startup": "system",
"boot": "auto",
"options": {
"device": "",
"reset_vbus": "",
"database": "/data/data.db",
"interval": 60,
"print_stdout": false,
"verbose": false,
"mqtt": {
"enabled": false,
"base_topic": "heating",
"server": "tcp://mqtt-server",
"client_id": "vbus",
"user": "",
"password": ""
},
"homeassistant": {
"enabled": true,
"entity_id_base": "sensor.heating"
}
},
"schema": {
"device": "str",
"reset_vbus": "str?",
"database": "str?",
"interval": "int?",
"print_stdout": "bool",
"verbose": "bool",
"mqtt": {
"enabled": "bool",
"base_topic": "str",
"server": "str",
"client_id": "str",
"user": "str?",
"password": "str?"
},
"homeassistant": {
"enabled": "bool",
"entity_id_base": "str"
}
}
}