-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
82 lines (82 loc) · 1.8 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.github.noreply.users.pi-relay-controller-homey",
"version": "1.0.0",
"compatibility": ">=2.0",
"sdk": 2,
"brandColor": "#99965E",
"name": {
"en": "Pi Relay Controller"
},
"description": {
"en": "Control relay shield on Raspberry Pi over gRPC"
},
"category": [],
"tags": {
"en": []
},
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"permissions": [],
"author": {
"email": "daviwil2@users.noreply.github.com",
"name": "David Williamson"
},
"contributors": {},
"contributing": {},
"bugs": {
"url": "https://github.com/daviwil2/Pi-Relay-Controller-Homey/issues"
},
"signals": {},
"flow": {},
"drivers": [
{
"id": "PiRelayController",
"discovery": "pi-relay-controller",
"name": {
"en": "Raspbery Pi Relay Controller"
},
"class": "socket",
"capabilities": [ "onoff" ],
"images": {
"large": "/drivers/pi-relay-controller/assets/images/large.png",
"small": "/drivers/pi-relay-controller/assets/images/small.png"
},
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": { "next": "add_my_devices" },
"options": { "singular": false }
},
{
"id": "add_my_devices",
"template": "add_devices"
}
],
"settings": []
}
],
"discovery": {
"pi-relay-controller": {
"type": "mdns-sd",
"mdns-sd": {
"name": "grpc",
"protocol": "tcp"
},
"id": "{{txt.id}}",
"conditions": [
[
{
"field": "txt.id",
"match": {
"type": "regex",
"value": "^pi-relay"
}
}
]
]
}
}
}