forked from home-assistant/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
54 lines (54 loc) · 1.01 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
{
"name": "HomeMatic OCCU",
"version": "1.0",
"slug": "homematic",
"description": "HomeMatic central based on OCCU",
"url": "https://home-assistant.io/addons/homematic/",
"arch": ["armhf", "i386", "amd64"],
"startup": "system",
"boot": "auto",
"auto_uart": true,
"gpio": true,
"apparmor": false,
"ports": {
"2001/tcp": 2001,
"2000/tcp": 2000
},
"options": {
"rf_enable": true,
"rf": [
{
"type": "CCU2",
"device": "/dev/ttyAMA0",
"reset": false
}
],
"wired_enable": false,
"wired": [
{
"serial": "xy",
"key": "abc",
"ip": "192.168.0.0"
}
]
},
"schema": {
"rf_enable": "bool",
"rf": [
{
"type": "match(CCU2)",
"device": "match(^/dev/.*$)",
"reset": "bool?"
}
],
"wired_enable": "bool",
"wired": [
{
"serial": "str",
"key": "str",
"ip": "str"
}
]
},
"image": "homeassistant/{arch}-addon-homeassistant"
}