-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
80 lines (80 loc) · 1.91 KB
/
app.json
File metadata and controls
80 lines (80 loc) · 1.91 KB
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
{
"id": "com.arnberge.idlockzigbee",
"version": "0.1.0",
"compatibility": ">=10.0.0",
"sdk": 3,
"name": {
"en": "ID Lock Zigbee (Arne)",
"no": "ID Lock Zigbee (Arne)"
},
"description": {
"en": "Adds support for ID Lock devices with the Datek Zigbee module.",
"no": "Legger til støtte for ID Lock-enheter med Datek Zigbee-modulen."
},
"category": "security",
"permissions": [
"homey:manager:api",
"homey:wireless:zigbee"
],
"icons": {
"small": "/assets/icon.svg",
"large": "/assets/large.jpg"
},
"author": {
"name": "Arne Berge",
"email": "arne@live.no"
},
"drivers": [
{
"id": "idlock_zigbee",
"name": {
"en": "ID Lock (Zigbee)",
"no": "ID Lock (Zigbee)"
},
"class": "lock",
"capabilities": [
"locked",
"measure_battery",
"alarm_battery"
],
"zigbee": {
"manufacturerName": "Datek",
"modelId": [
"ID Lock 150",
"ID Lock 202"
],
"productId": [
"ID Lock 150",
"ID Lock 202"
],
"deviceId": 10,
"profileId": 260,
"learnmode": {
"image": "",
"instruction": {
"en": "Follow the lock's manual to put it in Zigbee pairing mode (usually involves entering Master PIN + a sequence like * X * Y).",
"no": "Følg låsens manual for å sette den i Zigbee paringsmodus (involverer vanligvis Master PIN + en sekvens som * X * Y)."
}
},
"endpoints": {
"1": {
"clusters": [
0,
1,
3,
257
],
"bindings": [
1,
257
]
}
}
},
"images": {
"large": "/drivers/idlock_zigbee/assets/large.jpg",
"small": "/drivers/idlock_zigbee/assets/small.svg"
}
}
]
}