-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
82 lines (82 loc) · 2.26 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
{
"id": "com.apc.ups",
"name": {
"en": "APC UPS"
},
"version": "2.0.0",
"compatibility": "",
"sdk": 2,
"author": {
"name": "Dennie de Groot",
"email": "[email protected]",
"website": "https://denniedegroot.nl"
},
"contributors": {
"developers": [{
"name": "Dennie de Groot",
"email": "[email protected]",
"website": "https://denniedegroot.nl"
}]
},
"contributing": {
"donate": {
"paypal": {
"username": "denniedegroot"
}
}
},
"description": {
"en": "APC UPS support for Homey",
"nl": "APC UPS ondersteuning voor Homey"
},
"images": {
"large": "./assets/images/large.jpg",
"small": "./assets/images/small.jpg"
},
"category": "appliances",
"drivers": [
{
"id": "ups",
"name": {
"en": "APC UPS",
"nl": "APC UPS"
},
"images": {
"large": "./drivers/ups/assets/images/large.jpg",
"small": "./drivers/ups/assets/images/small.jpg"
},
"class": "sensor",
"capabilities": [ "alarm_battery", "measure_battery", "measure_power", "measure_voltage.power", "measure_voltage.battery" ],
"capabilitiesOptions": {
"measure_voltage.power": {
"title": {
"en": "Voltage",
"nl": "Voltage"
}
},
"measure_voltage.battery": {
"title": {
"en": "Battery Voltage",
"nl": "Batterij Voltage"
}
}
},
"pair": [
{
"id": "start"
},
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_devices"
}
},
{
"id": "add_devices",
"template": "add_devices"
}
]
}
]
}