forked from jjtbsomhorst/eu.jeroensomhorst.domoticz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
110 lines (108 loc) · 2.4 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
{
"id": "eu.jeroensomhorst.domoticz",
"version": "0.1.5",
"compatibility": ">=1.5.0",
"sdk": 2,
"name": {
"en": "Domoticz App",
"de": "Domoticz App"
},
"description": {
"en": "Add support for Domoticz devices",
"nl": "Voegt support voor Domoticz apparaten toe",
"de": "Fügt Support für Domoticz-Geräte hinzu"
},
"category": [
"energy","tools"
],
"permissions": [],
"images": {
"large": "assets/domoticz_large.jpg",
"small": "assets/domoticz_small.jpg"
},
"author": {
"name": "Jeroen Somhorst",
"email": "[email protected]"
},
"capabilities":{
"fan_speed": {
"type" : "number",
"title" : {
"en": "Fanspeed",
"nl": "Ventilator snelheid"
},
"getable": true,
"setable": false,
"units": {
"en": "RPM",
"nl": "RPM"
}
},
"power_meter_cumulative_high": {
"type": "number",
"title": {
"en": "Power reading T1",
"nl": "Meterstand T1"
},
"getable": true,
"setable": false,
"icon": "/assets/capabilities/electricity_meter.svg"
},
"power_meter_cumulative_low": {
"type": "number",
"title": {
"en": "Power reading T2",
"nl": "Meterstand T2"
},
"getable": true,
"setable": false,
"icon": "/assets/capabilities/electricity_meter.svg"
},
"gas_meter_cumulative": {
"type": "number",
"title": {
"en": "Gas counter total",
"nl": "Gas meter totaal"
},
"getable": true,
"setable": false,
"icon": "assets/capabilities/gas_meter.svg"
}
},
"drivers": [
{
"id": "domoticz_device",
"name": { "en":"Domoticz Device","nl": "Domoticz apparaat"},
"class": "other",
"capabilities": [],
"images": {
"large": "assets/driver/domoticz_large.jpg",
"small": "assets/driver/domoticz_small.jpg"
},
"pair": [{
"id": "domoticzsettings",
"navigation": {
"next": "list_devices"
}
},{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_my_devices"
}
},
{
"id": "add_my_devices",
"template": "add_devices"
}
]
}
],
"contributing": {
"donate": {
"paypal": {
"username": "jjtbsomhorst"
}
}
}
}