-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
113 lines (113 loc) · 2.28 KB
/
app.json
File metadata and controls
113 lines (113 loc) · 2.28 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
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
{
"id": "com.ehSky.homey-xcomfort-bridge",
"version": "1.0.1",
"compatibility": ">=12.0.1",
"sdk": 3,
"name": {
"en": "Eaton xComfort Bridge"
},
"description": {
"en": "Smart home lighting control with intelligent room management through the Eaton xComfort Bridge."
},
"category": [
"lights"
],
"images": {
"small": "/assets/images/small.png",
"large": "/assets/images/large.png"
},
"brandColor": "#00A651",
"permissions": [],
"flow": {
"actions": [
{
"id": "activate_scene",
"title": {
"en": "Activate xComfort Scene by Name"
},
"titleFormatted": {
"en": "Activate scene [[scene_name]]"
},
"args": [
{
"type": "autocomplete",
"name": "scene_name",
"title": {
"en": "Scene Name"
},
"placeholder": {
"en": "Select a scene from your xComfort Bridge"
}
}
]
}
]
},
"author": {
"name": "Erlend Hansen",
"email": "h.erlend96@gmail.com"
},
"contributors": {
"developers": [
{
"name": "Erlend Hansen",
"email": "h.erlend96@gmail.com"
}
]
},
"drivers": [
{
"id": "xcomfort-dimming-actuator",
"name": {
"en": "Dimming Actuator"
},
"class": "light",
"capabilities": [
"onoff",
"dim",
"measure_temperature"
],
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_devices"
}
},
{
"id": "add_devices",
"template": "add_devices"
}
]
},
{
"id": "xcomfort-room",
"name": {
"en": "Room"
},
"class": "light",
"capabilities": [
"onoff",
"dim",
"meter_power",
"alarm_contact.windows",
"alarm_contact.doors",
"alarm_motion"
],
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_devices"
}
},
{
"id": "add_devices",
"template": "add_devices"
}
]
}
]
}