-
Notifications
You must be signed in to change notification settings - Fork 7
/
io-package.json
129 lines (129 loc) · 3.64 KB
/
io-package.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
118
119
120
121
122
123
124
125
126
127
128
129
{
"common": {
"name": "valloxmv",
"version": "1.3.0",
"news": {
"1.3.0": {
"en": "Updated dependencies (iobroker-core & node)",
"de": "Abhängigkeiten aktualisiert (iobroker-core & node)"
},
"1.2.0": {
"en": "Removed NodeJS 10.x support and upgraded to Admin5 and jscontroller 3.3",
"de": "NodeJS 10.x support entfernt und auf Admin5 und jscontroller 3.3 aktualisiert"
},
"1.1.3": {
"en": "Fixed wrong datatype (number instead of boolean) in profile entries *_ENABLED and fixed setting connection info without ack value",
"de": "Objekte *_ENABLED wurden als Int statt bool abgespeichert und die connection info wurde mit fehlendem ack:true gespeichert."
},
"1.1.2": {
"en": "Fixed wrong datatype (string) in temperature states instead of numbers",
"de": "Werte in Temperaturstates wurden als String statt numbers gespeichert"
},
"1.1.1": {
"en": "Fixed adapter checker issues",
"de": "Fixed adapter checker issues"
},
"1.1.0": {
"en": "Added new measurements and parameters",
"de": "Neue Messpunkte und Parameter hinzugefügt"
},
"1.0.3": {
"en": "Fixed adapter checker issues",
"de": "Fixed adapter checker issues"
},
"1.0.2": {
"en": "Fixed issue writing objects",
"de": "Problem beim Schreiben von Objekten behoben"
},
"1.0.1": {
"en": "Fixed resetting custom configuration of objects",
"de": "Überschreiben manuell veränderter Objekt-Konfiguration behoben"
},
"1.0.0": {
"en": "Changed role of r/w booleans to switches, fixed empty drop downs",
"de": "r/w booleans als switch deklariert, leere Drop Down Felder behoben"
},
"0.1.3": {
"en": "Added expert settins",
"de": "Experteneinstellungen hinzugefügt"
},
"0.1.2": {
"en": "Initial release for testing",
"de": "Erstes Release für Tests"
}
},
"title": "ValloxMV",
"titleLang": {
"en": "Control ValloxMV ventilation system",
"de": "Steuerung von ValloxMV Lüftungsanlagen"
},
"desc": {
"en": "ioBroker ValloxMV Adapter",
"de": "ioBroker ValloxMV Adapter"
},
"authors": [
"hacki11 <jur.schmid@gmail.com>"
],
"keywords": [
"ioBroker",
"template",
"Smart Home",
"home automation",
"Vallox"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "main.js",
"icon": "valloxmv.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/hacki11/ioBroker.valloxmv/master/admin/valloxmv.png",
"readme": "https://github.com/hacki11/ioBroker.valloxmv/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "climate-control",
"compact": true,
"materialize": true,
"dataSource": "poll",
"connectionType": "local",
"dependencies": [
{
"admin": ">=3.0.0"
},
{
"js-controller": ">=3.0.0"
}
],
"adminUI": {
"config": "materialize"
}
},
"native": {
"host": "",
"port": "80",
"interval": "60"
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "Device or service connected",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
}
]
}