-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
117 lines (117 loc) · 2.21 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
{
"id": "com.heatnglo.rc300",
"version": "1.0.1",
"compatibility": ">=1.5.0",
"sdk": 2,
"name": {
"en": "Heat N Glo RC300 Fireplace Remote"
},
"description": {
"en": "Adds support for fireplaces controlled by the Heat N Glo RC300 Intellifire Plus remote."
},
"tags": {
"en": ["heatnglo", "intellifire", "remote", "rc300", "fire", "gas", "fireplace"]
},
"category": [
"appliances"
],
"permissions": [
"homey:wireless:433"
],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "John Bothe",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/jbothe/com.heatnglo.rc300/issues"
},
"capabilities": {
"my_fan_speed": {
"type": "number",
"title": {
"en": "Fan Speed"
},
"getable": true,
"setable": true,
"min": 0,
"max": 2,
"step": 1.0
}
},
"drivers": [
{
"id": "rc300",
"name": {
"en": "Heat N Glo RC300"
},
"images": {
"large": "/drivers/rc300/assets/images/large.png",
"small": "/drivers/rc300/assets/images/small.png"
},
"class": "heater",
"capabilities": [ "onoff" ],
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_my_devices"
}
},
{
"id": "add_my_devices",
"template": "add_devices"
}
]
}
],
"signals": {
"433": {
"rc300": {
"sof": [
800,
425,
375,
425,
900,
425,
400,
1225,
900
],
"eof": [
5000,
5000
],
"words": [
[
1500,
400
],
[
1500,
900
],
[
675,
400
],
[
675,
900
]
],
"interval": 18000,
"sensitivity": 0.5,
"repetitions": 30,
"minimalLength": 47,
"maximalLength": 47,
"txOnly": true
}
}
}
}