forked from ioBroker/ioBroker.cul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
io-package.json
207 lines (207 loc) · 7.24 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
{
"common": {
"name": "cul",
"version": "1.0.0",
"news": {
"1.0.0": {
"en": "Support for nodejs 12 added, nodejs 4 is no longer supported!",
"de": "Unterstützung für NodeJS 12 hinzugefügt, NodeJS 4 wird nicht mehr unterstützt!",
"ru": "Добавлена поддержка nodejs 12, nodejs 4 больше не поддерживается!",
"pt": "Suporte para nodejs 12 adicionado, nodejs 4 não é mais suportado!",
"nl": "Ondersteuning voor nodejs 12 toegevoegd, nodejs 4 wordt niet langer ondersteund!",
"fr": "Prise en charge de nodejs 12 ajoutée, nodejs 4 n'est plus prise en charge!",
"it": "Supporto per nodejs 12 aggiunto, nodejs 4 non è più supportato!",
"es": "Se agregó soporte para nodejs 12, ¡nodejs 4 ya no es compatible!",
"pl": "Dodano wsparcie dla nodejs 12, nodejs 4 nie jest już obsługiwany!",
"zh-cn": "添加了对nodejs 12的支持,不再支持nodejs 4!"
},
"0.4.0": {
"en": "Optimizations for nanoCul, Support for ESA devices",
"de": "Optimierungen für nanoCul, Unterstützung für ESA-Geräte",
"ru": "Оптимизация для nanoCul, поддержка устройств ESA",
"pt": "Otimizações para nanoCul, Suporte para dispositivos ESA",
"nl": "Optimalisaties voor nanoCul, ondersteuning voor ESA-apparaten",
"fr": "Optimisations pour nanoCul, prise en charge des périphériques ESA",
"it": "Ottimizzazioni per nanoCul, supporto per dispositivi ESA",
"es": "Optimizaciones para nanoCul, Soporte para dispositivos ESA",
"pl": "Optymalizacje dla nanoCul, Obsługa urządzeń ESA"
},
"0.3.0": {
"en": "Upgrade Serialport and cul library",
"de": "Serialport und cul Bibliotheken aktualisiert",
"ru": "Upgrade Serialport and cul library"
},
"0.2.2": {
"en": "use new npm cul module",
"de": "Benutze neues cul npm Modul",
"ru": "Новый npm пакет cul"
},
"0.2.0": {
"en": "Add raw data state",
"de": "Raw Data Zustand hizugefügt",
"ru": "Добавлено состояние для raw данных"
},
"0.1.1": {
"en": "Use newer version of cul module",
"de": "Benutze neue Version von cul Modul",
"ru": "Используется новая версия cul модуля"
},
"0.1.0": {
"en": "Update cul package",
"de": "Update cul Paket",
"ru": "Обновлён CUL модуль"
}
},
"title": "CUL/culfw",
"desc": "Javascript/Node.js based Busware CUL USB / culfw adapter",
"platform": "javascript/Node.js",
"mode": "daemon",
"loglevel": "info",
"license": "GPL-2.0",
"enabled": true,
"messagebox": true,
"icon": "busware.jpg",
"extIcon": "https://raw.githubusercontent.com/ioBroker/ioBroker.cul/master/admin/busware.jpg",
"keywords": [
"cul",
"coc",
"cuno",
"FS20",
"MAX!",
"HMS",
"FHT",
"EM",
"ELV",
"868",
"busware"
],
"readme": "https://github.com/ioBroker/ioBroker.cul/blob/master/README.md",
"type": "iot-systems",
"authors": [
"hobbyquaker <[email protected]>"
]
},
"native": {
"serialport": "",
"baudrate": 9600,
"mode": "SlowRF",
"type": "cul",
"ip": "127.0.0.1",
"port": "23"
},
"objects": [
{
"_id": "_design/cul",
"language": "javascript",
"views": {
"devices": {
"map": "function(doc) {\n if (doc.type == 'device' && doc._id.slice(0, 4) == 'cul') {\n emit(doc._id, doc);\n }\n}"
}
}
},
{
"_id": "cul.meta.roles",
"parent": "cul",
"type": "meta",
"meta": {
"type": "roles",
"adapter": "cul"
},
"common": {},
"native": {
"cmd": {
"type": "number",
"read": true,
"write": false,
"role": "state"
},
"bidirectional": {
"type": "boolean",
"read": true,
"write": false,
"role": "indicator"
},
"extended": {
"type": "boolean",
"read": true,
"write": false,
"role": "indicator"
},
"response": {
"type": "boolean",
"read": true,
"write": false,
"role": "indicator"
},
"temperature": {
"type": "number",
"unit": "°C",
"read": true,
"write": false,
"role": "value.temperature"
},
"humidity": {
"type": "number",
"unit": "%",
"min": 0,
"max": 100,
"read": true,
"write": false,
"role": "value.humidity"
},
"battery": {
"type": "number",
"list": [
"ok",
"empty",
"replaced"
],
"read": true,
"write": false,
"role": "indicator"
},
"undefined": {
"type": "string",
"read": true,
"write": false,
"role": "state"
}
}
}
],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "If connected to CUL",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "info.rawData",
"type": "state",
"common": {
"role": "state",
"name": "raw data",
"type": "string",
"read": true,
"write": false
},
"native": {}
}
]
}