-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
121 lines (121 loc) · 2.76 KB
/
app.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.free.woonveilig",
"version": "1.0.0",
"compatibility": ">=5.0.0",
"sdk": 3,
"brandColor": "#FF802E",
"platforms": [
"local"
],
"name": {
"en": "WoonVeilig"
},
"description": {
"en": "Adds local support for the WoonVeilig security system with the free subscription"
},
"category": [
"security"
],
"permissions": [],
"images": {
"small": "/assets/images/small.png",
"large": "/assets/images/large.png",
"xlarge": "/assets/images/xlarge.png"
},
"author": {
"name": "Peter Butzelaar",
"email": "[email protected]"
},
"drivers": [
{
"name": {
"en": "WoonVeilig Systeem"
},
"class": "homealarm",
"capabilities": [
"alarm_generic",
"homealarm_state"
],
"platforms": [
"local"
],
"connectivity": [
"lan"
],
"images": {
"small": "/drivers/woonveilig-systeem/assets/images/small.png",
"large": "/drivers/woonveilig-systeem/assets/images/large.png"
},
"pair": [
{
"id": "pair_woonveilig"
},
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_devices"
}
},
{
"id": "add_devices",
"template": "add_devices"
}
],
"id": "woonveilig-systeem",
"settings": [
{
"id": "ipaddress",
"type": "text",
"label": {
"en": "Local IP Address",
"nl": "Lokale IP Adres"
},
"hint": {
"en": "The IP address of the WoonVeilig System.",
"nl": "Het IP adres van het WoonVeilig Systeem."
}
},
{
"id": "username",
"type": "text",
"label": {
"en": "Username",
"nl": "Gebruikersnaam"
},
"hint": {
"en": "The username",
"nl": "De gebruikersnaam"
}
},
{
"id": "password",
"type": "password",
"label": {
"en": "Password",
"nl": "Wachtwoord"
},
"hint": {
"en": "The password of the user.",
"nl": "Het wachtwoord van de gebruiker."
}
},
{
"id": "intervalInSeconds",
"type": "number",
"min": 1,
"max": 60,
"label": {
"en": "Polling interval in seconds",
"nl": "Polling interval in seconden"
},
"hint": {
"en": "Interval",
"nl": "Interval"
}
}
]
}
]
}