iobroker.fairland 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +23 -0
- package/README.md +219 -0
- package/THIRD_PARTY_NOTICES.md +37 -0
- package/admin/fairland.png +0 -0
- package/admin/i18n/de/translations.json +9 -0
- package/admin/i18n/en/translations.json +9 -0
- package/admin/i18n/es/translations.json +9 -0
- package/admin/i18n/fr/translations.json +9 -0
- package/admin/i18n/it/translations.json +9 -0
- package/admin/i18n/nl/translations.json +9 -0
- package/admin/i18n/pl/translations.json +9 -0
- package/admin/i18n/pt/translations.json +9 -0
- package/admin/i18n/ru/translations.json +9 -0
- package/admin/i18n/uk/translations.json +9 -0
- package/admin/i18n/zh-cn/translations.json +9 -0
- package/admin/jsonConfig.json +59 -0
- package/build/dpUtils.js +186 -0
- package/build/fairlandApi.js +190 -0
- package/build/main.js +757 -0
- package/build/mappings.js +427 -0
- package/build/types.js +2 -0
- package/io-package.json +228 -0
- package/package.json +63 -0
|
@@ -0,0 +1,427 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WATER_PUMP_NUMBER_DEFINITIONS = exports.WATER_PUMP_SENSOR_DEFINITIONS = exports.HEAT_PUMP_NUMBER_DEFINITIONS = exports.HEAT_PUMP_SENSOR_DEFINITIONS = exports.WATER_PUMP_POWER_DP_ID = exports.WATER_PUMP_MODE_DP_ID = exports.HEAT_PUMP_ACTION_DP_ID = exports.HEAT_PUMP_TARGET_TEMP_DP_ID = exports.HEAT_PUMP_HVAC_MODE_DP_ID = exports.HEAT_PUMP_CURRENT_TEMP_DP_ID = exports.HEAT_PUMP_PRESET_DP_ID = exports.HEAT_PUMP_POWER_DP_ID = exports.WATER_PUMP_MODE_FALLBACK = exports.WATER_PUMP_MODE_LABEL_TO_OPTION = exports.HEAT_HVAC_MODE_STATES = exports.HEAT_HVAC_MODES = exports.WATER_PUMP_CATEGORY_CODE = exports.HEAT_PUMP_CATEGORY_CODE = void 0;
|
|
4
|
+
exports.HEAT_PUMP_CATEGORY_CODE = 'heatPump';
|
|
5
|
+
exports.WATER_PUMP_CATEGORY_CODE = 'waterPump';
|
|
6
|
+
exports.HEAT_HVAC_MODES = {
|
|
7
|
+
0: 'auto',
|
|
8
|
+
1: 'heat',
|
|
9
|
+
2: 'cool',
|
|
10
|
+
};
|
|
11
|
+
exports.HEAT_HVAC_MODE_STATES = {
|
|
12
|
+
off: 'Off',
|
|
13
|
+
auto: 'Auto',
|
|
14
|
+
heat: 'Heat',
|
|
15
|
+
cool: 'Cool',
|
|
16
|
+
};
|
|
17
|
+
exports.WATER_PUMP_MODE_LABEL_TO_OPTION = {
|
|
18
|
+
AI: 'auto_inverter',
|
|
19
|
+
MI: 'manual_inverter',
|
|
20
|
+
backwash: 'backwash',
|
|
21
|
+
};
|
|
22
|
+
exports.WATER_PUMP_MODE_FALLBACK = {
|
|
23
|
+
0: 'manual_inverter',
|
|
24
|
+
1: 'backwash',
|
|
25
|
+
};
|
|
26
|
+
exports.HEAT_PUMP_POWER_DP_ID = '101';
|
|
27
|
+
exports.HEAT_PUMP_PRESET_DP_ID = '102';
|
|
28
|
+
exports.HEAT_PUMP_CURRENT_TEMP_DP_ID = '103';
|
|
29
|
+
exports.HEAT_PUMP_HVAC_MODE_DP_ID = '106';
|
|
30
|
+
exports.HEAT_PUMP_TARGET_TEMP_DP_ID = '107';
|
|
31
|
+
exports.HEAT_PUMP_ACTION_DP_ID = '113';
|
|
32
|
+
exports.WATER_PUMP_MODE_DP_ID = '103';
|
|
33
|
+
exports.WATER_PUMP_POWER_DP_ID = '105';
|
|
34
|
+
exports.HEAT_PUMP_SENSOR_DEFINITIONS = [
|
|
35
|
+
{
|
|
36
|
+
id: 'temperature.current',
|
|
37
|
+
dpId: exports.HEAT_PUMP_CURRENT_TEMP_DP_ID,
|
|
38
|
+
name: 'Inlet water temperature',
|
|
39
|
+
role: 'value.temperature',
|
|
40
|
+
type: 'number',
|
|
41
|
+
unit: '°C',
|
|
42
|
+
useDpScale: true,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
id: 'temperature.outlet',
|
|
46
|
+
dpId: '129',
|
|
47
|
+
name: 'Outlet water temperature',
|
|
48
|
+
role: 'value.temperature',
|
|
49
|
+
type: 'number',
|
|
50
|
+
unit: '°C',
|
|
51
|
+
useDpScale: true,
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
id: 'temperature.ambient',
|
|
55
|
+
dpId: '130',
|
|
56
|
+
name: 'Ambient temperature',
|
|
57
|
+
role: 'value.temperature',
|
|
58
|
+
type: 'number',
|
|
59
|
+
unit: '°C',
|
|
60
|
+
useDpScale: true,
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
id: 'temperature.exhaust',
|
|
64
|
+
dpId: '131',
|
|
65
|
+
name: 'Exhaust temperature',
|
|
66
|
+
role: 'value.temperature',
|
|
67
|
+
type: 'number',
|
|
68
|
+
unit: '°C',
|
|
69
|
+
useDpScale: true,
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
id: 'temperature.outerCoilPipe',
|
|
73
|
+
dpId: '132',
|
|
74
|
+
name: 'Outer coil pipe temperature',
|
|
75
|
+
role: 'value.temperature',
|
|
76
|
+
type: 'number',
|
|
77
|
+
unit: '°C',
|
|
78
|
+
useDpScale: true,
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
id: 'temperature.gasReturn',
|
|
82
|
+
dpId: '133',
|
|
83
|
+
name: 'Gas return temperature',
|
|
84
|
+
role: 'value.temperature',
|
|
85
|
+
type: 'number',
|
|
86
|
+
unit: '°C',
|
|
87
|
+
useDpScale: true,
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
id: 'temperature.innerCoilPipe',
|
|
91
|
+
dpId: '134',
|
|
92
|
+
name: 'Inner coil pipe temperature',
|
|
93
|
+
role: 'value.temperature',
|
|
94
|
+
type: 'number',
|
|
95
|
+
unit: '°C',
|
|
96
|
+
useDpScale: true,
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
id: 'temperature.coolingPlate',
|
|
100
|
+
dpId: '135',
|
|
101
|
+
name: 'Cooling plate temperature',
|
|
102
|
+
role: 'value.temperature',
|
|
103
|
+
type: 'number',
|
|
104
|
+
unit: '°C',
|
|
105
|
+
useDpScale: true,
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
id: 'runningPercentage',
|
|
109
|
+
dpId: '105',
|
|
110
|
+
name: 'Running percentage',
|
|
111
|
+
role: 'value',
|
|
112
|
+
type: 'number',
|
|
113
|
+
unit: '%',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
id: 'power.current',
|
|
117
|
+
dpId: '112',
|
|
118
|
+
name: 'Power',
|
|
119
|
+
role: 'value.power',
|
|
120
|
+
type: 'number',
|
|
121
|
+
unit: 'kW',
|
|
122
|
+
scale: 3,
|
|
123
|
+
useDpScale: true,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
id: 'fan.dcSpeed',
|
|
127
|
+
dpId: '137',
|
|
128
|
+
name: 'DC fan speed',
|
|
129
|
+
role: 'value',
|
|
130
|
+
type: 'number',
|
|
131
|
+
unit: 'r/min',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
id: 'valve.electronicExpansionOpening',
|
|
135
|
+
dpId: '136',
|
|
136
|
+
name: 'Electronic expansion valve opening',
|
|
137
|
+
role: 'value',
|
|
138
|
+
type: 'number',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
id: 'diagnostic.lowerTemperatureLimit',
|
|
142
|
+
dpId: '108',
|
|
143
|
+
name: 'Lower temperature limit',
|
|
144
|
+
role: 'value.temperature',
|
|
145
|
+
type: 'number',
|
|
146
|
+
unit: '°C',
|
|
147
|
+
useDpScale: true,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
id: 'diagnostic.upperTemperatureLimit',
|
|
151
|
+
dpId: '109',
|
|
152
|
+
name: 'Upper temperature limit',
|
|
153
|
+
role: 'value.temperature',
|
|
154
|
+
type: 'number',
|
|
155
|
+
unit: '°C',
|
|
156
|
+
useDpScale: true,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
id: 'diagnostic.powerDisplayStatus',
|
|
160
|
+
dpId: exports.HEAT_PUMP_ACTION_DP_ID,
|
|
161
|
+
name: 'Power display status',
|
|
162
|
+
role: 'indicator',
|
|
163
|
+
type: 'boolean',
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
id: 'diagnostic.refrigerationFunction',
|
|
167
|
+
dpId: '114',
|
|
168
|
+
name: 'Refrigeration function',
|
|
169
|
+
role: 'value',
|
|
170
|
+
type: 'number',
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
id: 'diagnostic.overclockingFunction',
|
|
174
|
+
dpId: '115',
|
|
175
|
+
name: 'Overclocking function',
|
|
176
|
+
role: 'value',
|
|
177
|
+
type: 'number',
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
id: 'diagnostic.waterPumpRunningMode',
|
|
181
|
+
dpId: '116',
|
|
182
|
+
name: 'Water pump running mode',
|
|
183
|
+
role: 'value',
|
|
184
|
+
type: 'number',
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
id: 'diagnostic.waterPumpRunningTime',
|
|
188
|
+
dpId: '117',
|
|
189
|
+
name: 'Water pump running time',
|
|
190
|
+
role: 'value',
|
|
191
|
+
type: 'number',
|
|
192
|
+
unit: 'min',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
id: 'diagnostic.defrostingInterval',
|
|
196
|
+
dpId: '118',
|
|
197
|
+
name: 'Defrosting interval',
|
|
198
|
+
role: 'value',
|
|
199
|
+
type: 'number',
|
|
200
|
+
unit: 'min',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
id: 'diagnostic.defrostingStartTemperature',
|
|
204
|
+
dpId: '119',
|
|
205
|
+
name: 'Defrosting start temperature',
|
|
206
|
+
role: 'value.temperature',
|
|
207
|
+
type: 'number',
|
|
208
|
+
unit: '°C',
|
|
209
|
+
useDpScale: true,
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
id: 'diagnostic.defrostingRunningTime',
|
|
213
|
+
dpId: '120',
|
|
214
|
+
name: 'Defrosting running time',
|
|
215
|
+
role: 'value',
|
|
216
|
+
type: 'number',
|
|
217
|
+
unit: 'min',
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
id: 'diagnostic.defrostingQuitTemperature',
|
|
221
|
+
dpId: '121',
|
|
222
|
+
name: 'Defrosting quit temperature',
|
|
223
|
+
role: 'value.temperature',
|
|
224
|
+
type: 'number',
|
|
225
|
+
unit: '°C',
|
|
226
|
+
useDpScale: true,
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
id: 'diagnostic.compressorSpeedControl',
|
|
230
|
+
dpId: '122',
|
|
231
|
+
name: 'Compressor speed control',
|
|
232
|
+
role: 'value',
|
|
233
|
+
type: 'number',
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
id: 'diagnostic.eevSuperheatHeating',
|
|
237
|
+
dpId: '123',
|
|
238
|
+
name: 'EEV superheat heating',
|
|
239
|
+
role: 'value.temperature',
|
|
240
|
+
type: 'number',
|
|
241
|
+
unit: '°C',
|
|
242
|
+
useDpScale: true,
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
id: 'diagnostic.eevSuperheatCooling',
|
|
246
|
+
dpId: '124',
|
|
247
|
+
name: 'EEV superheat cooling',
|
|
248
|
+
role: 'value.temperature',
|
|
249
|
+
type: 'number',
|
|
250
|
+
unit: '°C',
|
|
251
|
+
useDpScale: true,
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
id: 'diagnostic.eevControlMode',
|
|
255
|
+
dpId: '125',
|
|
256
|
+
name: 'EEV control mode',
|
|
257
|
+
role: 'value',
|
|
258
|
+
type: 'number',
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
id: 'diagnostic.eevManualOpeningHeating',
|
|
262
|
+
dpId: '126',
|
|
263
|
+
name: 'EEV manual opening heating',
|
|
264
|
+
role: 'value',
|
|
265
|
+
type: 'number',
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
id: 'diagnostic.eevManualOpeningCooling',
|
|
269
|
+
dpId: '127',
|
|
270
|
+
name: 'EEV manual opening cooling',
|
|
271
|
+
role: 'value',
|
|
272
|
+
type: 'number',
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
id: 'diagnostic.powerOffMemoryFunction',
|
|
276
|
+
dpId: '128',
|
|
277
|
+
name: 'Power-off memory function',
|
|
278
|
+
role: 'value',
|
|
279
|
+
type: 'number',
|
|
280
|
+
},
|
|
281
|
+
];
|
|
282
|
+
exports.HEAT_PUMP_NUMBER_DEFINITIONS = [
|
|
283
|
+
{
|
|
284
|
+
id: 'config.waterPumpMode',
|
|
285
|
+
dpId: '116',
|
|
286
|
+
name: 'Set water pump mode',
|
|
287
|
+
role: 'level',
|
|
288
|
+
type: 'number',
|
|
289
|
+
write: true,
|
|
290
|
+
min: 0,
|
|
291
|
+
max: 2,
|
|
292
|
+
step: 1,
|
|
293
|
+
useDpRange: true,
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
id: 'config.waterPumpTime',
|
|
297
|
+
dpId: '117',
|
|
298
|
+
name: 'Set water pump time',
|
|
299
|
+
role: 'level.timer',
|
|
300
|
+
type: 'number',
|
|
301
|
+
unit: 'min',
|
|
302
|
+
write: true,
|
|
303
|
+
min: 10,
|
|
304
|
+
max: 120,
|
|
305
|
+
step: 5,
|
|
306
|
+
useDpRange: true,
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
id: 'config.defrostingInterval',
|
|
310
|
+
dpId: '118',
|
|
311
|
+
name: 'Set defrosting interval',
|
|
312
|
+
role: 'level.timer',
|
|
313
|
+
type: 'number',
|
|
314
|
+
unit: 'min',
|
|
315
|
+
write: true,
|
|
316
|
+
min: 30,
|
|
317
|
+
max: 90,
|
|
318
|
+
step: 1,
|
|
319
|
+
useDpRange: true,
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
id: 'config.defrostingStartTemperature',
|
|
323
|
+
dpId: '119',
|
|
324
|
+
name: 'Set defrosting start temperature',
|
|
325
|
+
role: 'level.temperature',
|
|
326
|
+
type: 'number',
|
|
327
|
+
unit: '°C',
|
|
328
|
+
write: true,
|
|
329
|
+
min: -30,
|
|
330
|
+
max: 250,
|
|
331
|
+
step: 1,
|
|
332
|
+
useDpRange: true,
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
id: 'config.defrostingRunningTime',
|
|
336
|
+
dpId: '120',
|
|
337
|
+
name: 'Set defrosting running time',
|
|
338
|
+
role: 'level.timer',
|
|
339
|
+
type: 'number',
|
|
340
|
+
unit: 'min',
|
|
341
|
+
write: true,
|
|
342
|
+
min: 1,
|
|
343
|
+
max: 12,
|
|
344
|
+
step: 1,
|
|
345
|
+
useDpRange: true,
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
id: 'config.defrostingQuitTemperature',
|
|
349
|
+
dpId: '121',
|
|
350
|
+
name: 'Set defrosting quit temperature',
|
|
351
|
+
role: 'level.temperature',
|
|
352
|
+
type: 'number',
|
|
353
|
+
unit: '°C',
|
|
354
|
+
write: true,
|
|
355
|
+
min: 8,
|
|
356
|
+
max: 100,
|
|
357
|
+
step: 1,
|
|
358
|
+
useDpRange: true,
|
|
359
|
+
},
|
|
360
|
+
];
|
|
361
|
+
exports.WATER_PUMP_SENSOR_DEFINITIONS = [
|
|
362
|
+
{
|
|
363
|
+
id: 'power.current',
|
|
364
|
+
dpId: '5',
|
|
365
|
+
name: 'Current power',
|
|
366
|
+
role: 'value.power',
|
|
367
|
+
type: 'number',
|
|
368
|
+
unit: 'W',
|
|
369
|
+
useDpScale: true,
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
id: 'pump.runningRate',
|
|
373
|
+
dpId: '102',
|
|
374
|
+
name: 'Running rate',
|
|
375
|
+
role: 'value',
|
|
376
|
+
type: 'number',
|
|
377
|
+
unit: '%',
|
|
378
|
+
requireValue: true,
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
id: 'pump.backwashCountdown',
|
|
382
|
+
dpId: '108',
|
|
383
|
+
name: 'Backwash countdown',
|
|
384
|
+
role: 'value.interval',
|
|
385
|
+
type: 'number',
|
|
386
|
+
unit: 'min',
|
|
387
|
+
useDpTimeUnit: true,
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
id: 'energy.consumption',
|
|
391
|
+
dpId: '109',
|
|
392
|
+
name: 'Energy consumption',
|
|
393
|
+
role: 'value.energy.consumption',
|
|
394
|
+
type: 'number',
|
|
395
|
+
unit: 'kWh',
|
|
396
|
+
useDpScale: true,
|
|
397
|
+
},
|
|
398
|
+
];
|
|
399
|
+
exports.WATER_PUMP_NUMBER_DEFINITIONS = [
|
|
400
|
+
{
|
|
401
|
+
id: 'pump.speedSetpoint',
|
|
402
|
+
dpId: '111',
|
|
403
|
+
name: 'Speed setpoint',
|
|
404
|
+
role: 'level.speed',
|
|
405
|
+
type: 'number',
|
|
406
|
+
unit: '%',
|
|
407
|
+
write: true,
|
|
408
|
+
min: 30,
|
|
409
|
+
max: 100,
|
|
410
|
+
step: 1,
|
|
411
|
+
useDpRange: true,
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
id: 'pump.backwashDuration',
|
|
415
|
+
dpId: '104',
|
|
416
|
+
name: 'Backwash duration',
|
|
417
|
+
role: 'level.timer',
|
|
418
|
+
type: 'number',
|
|
419
|
+
unit: 'min',
|
|
420
|
+
write: true,
|
|
421
|
+
min: 0,
|
|
422
|
+
max: 1440,
|
|
423
|
+
step: 1,
|
|
424
|
+
useDpRange: true,
|
|
425
|
+
useDpTimeUnit: true,
|
|
426
|
+
},
|
|
427
|
+
];
|
package/build/types.js
ADDED
package/io-package.json
ADDED
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"name": "fairland",
|
|
4
|
+
"version": "0.2.1",
|
|
5
|
+
"titleLang": {
|
|
6
|
+
"en": "Fairland (iGarden)",
|
|
7
|
+
"de": "Fairland (iGarden)",
|
|
8
|
+
"ru": "Fairland (iGarden)",
|
|
9
|
+
"pt": "Fairland (iGarden)",
|
|
10
|
+
"nl": "Fairland (iGarden)",
|
|
11
|
+
"fr": "Fairland (iGarden)",
|
|
12
|
+
"it": "Fairland (iGarden)",
|
|
13
|
+
"es": "Fairland (iGarden)",
|
|
14
|
+
"pl": "Fairland (iGarden)",
|
|
15
|
+
"uk": "Fairland (iGarden)",
|
|
16
|
+
"zh-cn": "Fairland (iGarden)"
|
|
17
|
+
},
|
|
18
|
+
"desc": {
|
|
19
|
+
"en": "Controls and monitors Fairland iGarden pool heat pumps and pool pumps.",
|
|
20
|
+
"de": "Steuert und ueberwacht Fairland-iGarden Pool-Waermepumpen und Poolpumpen.",
|
|
21
|
+
"ru": "Управляет и контролирует тепловые насосы для бассейна и насосы для бассейна Fairland iGarden.",
|
|
22
|
+
"pt": "Controla e monitora bombas de calor e bombas de piscina Fairland iGarden.",
|
|
23
|
+
"nl": "Bestuurt en bewaakt Fairland iGarden zwembadwarmtepompen en zwembadpompen.",
|
|
24
|
+
"fr": "Controle et surveille les pompes a chaleur et pompes de piscine Fairland iGarden.",
|
|
25
|
+
"it": "Controlla e monitora pompe di calore e pompe per piscina Fairland iGarden.",
|
|
26
|
+
"es": "Controla y supervisa bombas de calor y bombas de piscina Fairland iGarden.",
|
|
27
|
+
"pl": "Steruje i monitoruje pompy ciepla oraz pompy basenowe Fairland iGarden.",
|
|
28
|
+
"uk": "Керує та контролює теплові насоси для басейну і басейнові насоси Fairland iGarden.",
|
|
29
|
+
"zh-cn": "控制并监控 Fairland iGarden 泳池热泵和泳池泵。"
|
|
30
|
+
},
|
|
31
|
+
"authors": [
|
|
32
|
+
"dude2k"
|
|
33
|
+
],
|
|
34
|
+
"keywords": [
|
|
35
|
+
"fairland",
|
|
36
|
+
"igarden",
|
|
37
|
+
"pool",
|
|
38
|
+
"heat pump",
|
|
39
|
+
"pump",
|
|
40
|
+
"madimack"
|
|
41
|
+
],
|
|
42
|
+
"platform": "Javascript/Node.js",
|
|
43
|
+
"enabled": true,
|
|
44
|
+
"mode": "daemon",
|
|
45
|
+
"type": "iot-systems",
|
|
46
|
+
"compact": true,
|
|
47
|
+
"connectionType": "cloud",
|
|
48
|
+
"dataSource": "poll",
|
|
49
|
+
"adminUI": {
|
|
50
|
+
"config": "json"
|
|
51
|
+
},
|
|
52
|
+
"loglevel": "info",
|
|
53
|
+
"readme": "https://github.com/dude2k/ioBroker.fairland/blob/main/README.md",
|
|
54
|
+
"icon": "fairland.png",
|
|
55
|
+
"extIcon": "https://raw.githubusercontent.com/dude2k/ioBroker.fairland/main/admin/fairland.png",
|
|
56
|
+
"news": {
|
|
57
|
+
"0.2.1": {
|
|
58
|
+
"en": "Skip npm deployment until publishing is explicitly enabled for the repository.",
|
|
59
|
+
"de": "Ueberspringt das npm-Deployment, bis die Veroeffentlichung explizit fuer das Repository aktiviert ist.",
|
|
60
|
+
"ru": "Skip npm deployment until publishing is explicitly enabled for the repository.",
|
|
61
|
+
"pt": "Ignora o deploy npm ate que a publicacao seja ativada explicitamente para o repositorio.",
|
|
62
|
+
"nl": "Slaat npm-deployment over totdat publiceren expliciet voor de repository is ingeschakeld.",
|
|
63
|
+
"fr": "Ignore le deploiement npm tant que la publication n'est pas explicitement activee pour le depot.",
|
|
64
|
+
"it": "Salta il deployment npm finche la pubblicazione non e abilitata esplicitamente per il repository.",
|
|
65
|
+
"es": "Omite el despliegue npm hasta que la publicacion este habilitada explicitamente para el repositorio.",
|
|
66
|
+
"pl": "Pomija wdrozenie npm, dopoki publikowanie nie zostanie jawnie wlaczone dla repozytorium.",
|
|
67
|
+
"uk": "Skip npm deployment until publishing is explicitly enabled for the repository.",
|
|
68
|
+
"zh-cn": "Skip npm deployment until publishing is explicitly enabled for the repository."
|
|
69
|
+
},
|
|
70
|
+
"0.2.0": {
|
|
71
|
+
"en": "Add Dependabot configuration, Dependabot auto-merge, Node.js 22 TypeScript base configuration, and require Admin 7.8.23.",
|
|
72
|
+
"de": "Fuegt Dependabot-Konfiguration, Dependabot-Auto-Merge und die Node.js-22-TypeScript-Basiskonfiguration hinzu und setzt Admin 7.8.23 voraus.",
|
|
73
|
+
"ru": "Add Dependabot configuration, Dependabot auto-merge, Node.js 22 TypeScript base configuration, and require Admin 7.8.23.",
|
|
74
|
+
"pt": "Adiciona configuracao do Dependabot, auto-merge do Dependabot, configuracao base TypeScript para Node.js 22 e requer Admin 7.8.23.",
|
|
75
|
+
"nl": "Voegt Dependabot-configuratie, Dependabot auto-merge en Node.js 22 TypeScript-basisconfiguratie toe en vereist Admin 7.8.23.",
|
|
76
|
+
"fr": "Ajoute la configuration Dependabot, l'auto-merge Dependabot, la configuration TypeScript de base Node.js 22 et requiert Admin 7.8.23.",
|
|
77
|
+
"it": "Aggiunge la configurazione Dependabot, l'auto-merge Dependabot, la configurazione TypeScript di base Node.js 22 e richiede Admin 7.8.23.",
|
|
78
|
+
"es": "Anade configuracion de Dependabot, auto-merge de Dependabot, configuracion base TypeScript para Node.js 22 y requiere Admin 7.8.23.",
|
|
79
|
+
"pl": "Dodaje konfiguracje Dependabot, automatyczne scalanie Dependabot, bazowa konfiguracje TypeScript dla Node.js 22 i wymaga Admin 7.8.23.",
|
|
80
|
+
"uk": "Add Dependabot configuration, Dependabot auto-merge, Node.js 22 TypeScript base configuration, and require Admin 7.8.23.",
|
|
81
|
+
"zh-cn": "Add Dependabot configuration, Dependabot auto-merge, Node.js 22 TypeScript base configuration, and require Admin 7.8.23."
|
|
82
|
+
},
|
|
83
|
+
"0.1.8": {
|
|
84
|
+
"en": "Update TypeScript to 6.0.3, adjust the TypeScript configuration, and add CHANGELOG_OLD.md.",
|
|
85
|
+
"de": "Aktualisiert TypeScript auf 6.0.3, passt die TypeScript-Konfiguration an und fuegt CHANGELOG_OLD.md hinzu.",
|
|
86
|
+
"ru": "Update TypeScript to 6.0.3, adjust the TypeScript configuration, and add CHANGELOG_OLD.md.",
|
|
87
|
+
"pt": "Atualiza TypeScript para 6.0.3, ajusta a configuracao do TypeScript e adiciona CHANGELOG_OLD.md.",
|
|
88
|
+
"nl": "Werkt TypeScript bij naar 6.0.3, past de TypeScript-configuratie aan en voegt CHANGELOG_OLD.md toe.",
|
|
89
|
+
"fr": "Met a jour TypeScript vers 6.0.3, ajuste la configuration TypeScript et ajoute CHANGELOG_OLD.md.",
|
|
90
|
+
"it": "Aggiorna TypeScript a 6.0.3, adegua la configurazione TypeScript e aggiunge CHANGELOG_OLD.md.",
|
|
91
|
+
"es": "Actualiza TypeScript a 6.0.3, ajusta la configuracion de TypeScript y anade CHANGELOG_OLD.md.",
|
|
92
|
+
"pl": "Aktualizuje TypeScript do 6.0.3, dostosowuje konfiguracje TypeScript i dodaje CHANGELOG_OLD.md.",
|
|
93
|
+
"uk": "Update TypeScript to 6.0.3, adjust the TypeScript configuration, and add CHANGELOG_OLD.md.",
|
|
94
|
+
"zh-cn": "Update TypeScript to 6.0.3, adjust the TypeScript configuration, and add CHANGELOG_OLD.md."
|
|
95
|
+
},
|
|
96
|
+
"0.1.7": {
|
|
97
|
+
"en": "Align Node.js type definitions with the supported Node.js 22 runtime.",
|
|
98
|
+
"de": "Passt die Node.js-Typdefinitionen an die unterstuetzte Node.js-22-Laufzeit an.",
|
|
99
|
+
"ru": "Align Node.js type definitions with the supported Node.js 22 runtime.",
|
|
100
|
+
"pt": "Alinha as definicoes de tipo do Node.js com o runtime Node.js 22 suportado.",
|
|
101
|
+
"nl": "Stemt de Node.js-typedefinities af op de ondersteunde Node.js 22-runtime.",
|
|
102
|
+
"fr": "Aligne les definitions de types Node.js sur l'environnement Node.js 22 pris en charge.",
|
|
103
|
+
"it": "Allinea le definizioni dei tipi Node.js al runtime Node.js 22 supportato.",
|
|
104
|
+
"es": "Ajusta las definiciones de tipos de Node.js al entorno Node.js 22 compatible.",
|
|
105
|
+
"pl": "Dostosowuje definicje typow Node.js do obslugiwanego srodowiska Node.js 22.",
|
|
106
|
+
"uk": "Align Node.js type definitions with the supported Node.js 22 runtime.",
|
|
107
|
+
"zh-cn": "Align Node.js type definitions with the supported Node.js 22 runtime."
|
|
108
|
+
},
|
|
109
|
+
"0.1.6": {
|
|
110
|
+
"en": "Complete admin UI translations for all standard ioBroker languages.",
|
|
111
|
+
"de": "Vervollstaendigt die Admin-UI-Uebersetzungen fuer alle ioBroker-Standardsprachen.",
|
|
112
|
+
"ru": "Complete admin UI translations for all standard ioBroker languages.",
|
|
113
|
+
"pt": "Completa as traducoes da interface admin para todos os idiomas padrao do ioBroker.",
|
|
114
|
+
"nl": "Voltooit de admin-UI-vertalingen voor alle standaard ioBroker-talen.",
|
|
115
|
+
"fr": "Complete les traductions de l'interface admin pour toutes les langues standard ioBroker.",
|
|
116
|
+
"it": "Completa le traduzioni dell'interfaccia admin per tutte le lingue standard ioBroker.",
|
|
117
|
+
"es": "Completa las traducciones de la interfaz admin para todos los idiomas estandar de ioBroker.",
|
|
118
|
+
"pl": "Uzupelnia tlumaczenia interfejsu admin dla wszystkich standardowych jezykow ioBroker.",
|
|
119
|
+
"uk": "Complete admin UI translations for all standard ioBroker languages.",
|
|
120
|
+
"zh-cn": "Complete admin UI translations for all standard ioBroker languages."
|
|
121
|
+
},
|
|
122
|
+
"0.1.5": {
|
|
123
|
+
"en": "Add CI workflow, ioBroker development tooling, and repository check alignments.",
|
|
124
|
+
"de": "Fuegt CI-Workflow, ioBroker-Entwicklungswerkzeuge und Anpassungen fuer Repository-Pruefungen hinzu.",
|
|
125
|
+
"ru": "Add CI workflow, ioBroker development tooling, and repository check alignments.",
|
|
126
|
+
"pt": "Adiciona workflow de CI, ferramentas de desenvolvimento ioBroker e ajustes para verificacoes do repositorio.",
|
|
127
|
+
"nl": "Voegt CI-workflow, ioBroker-ontwikkeltools en aanpassingen voor repositorycontroles toe.",
|
|
128
|
+
"fr": "Ajoute le workflow CI, les outils de developpement ioBroker et les ajustements pour les controles du depot.",
|
|
129
|
+
"it": "Aggiunge workflow CI, strumenti di sviluppo ioBroker e adeguamenti per i controlli del repository.",
|
|
130
|
+
"es": "Anade workflow de CI, herramientas de desarrollo ioBroker y ajustes para las comprobaciones del repositorio.",
|
|
131
|
+
"pl": "Dodaje workflow CI, narzedzia deweloperskie ioBroker oraz dostosowania do kontroli repozytorium.",
|
|
132
|
+
"uk": "Add CI workflow, ioBroker development tooling, and repository check alignments.",
|
|
133
|
+
"zh-cn": "Add CI workflow, ioBroker development tooling, and repository check alignments."
|
|
134
|
+
},
|
|
135
|
+
"0.1.4": {
|
|
136
|
+
"en": "Add adapter icon and complete io-package translations.",
|
|
137
|
+
"de": "Fuegt ein Adapter-Icon hinzu und vervollstaendigt io-package-Uebersetzungen.",
|
|
138
|
+
"ru": "Добавлен значок адаптера и завершены переводы io-package.",
|
|
139
|
+
"pt": "Adiciona o icone do adaptador e completa as traducoes do io-package.",
|
|
140
|
+
"nl": "Adapterpictogram toegevoegd en io-package-vertalingen voltooid.",
|
|
141
|
+
"fr": "Ajoute l'icone de l'adaptateur et complete les traductions io-package.",
|
|
142
|
+
"it": "Aggiunge l'icona dell'adattatore e completa le traduzioni di io-package.",
|
|
143
|
+
"es": "Anade el icono del adaptador y completa las traducciones de io-package.",
|
|
144
|
+
"pl": "Dodano ikone adaptera i uzupelniono tlumaczenia io-package.",
|
|
145
|
+
"uk": "Додано значок адаптера та завершено переклади io-package.",
|
|
146
|
+
"zh-cn": "添加适配器图标并完善 io-package 翻译。"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"dependencies": [
|
|
150
|
+
{
|
|
151
|
+
"js-controller": ">=6.0.11"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"globalDependencies": [
|
|
155
|
+
{
|
|
156
|
+
"admin": ">=7.8.23"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"licenseInformation": {
|
|
160
|
+
"type": "free",
|
|
161
|
+
"license": "MIT"
|
|
162
|
+
},
|
|
163
|
+
"tier": 3
|
|
164
|
+
},
|
|
165
|
+
"protectedNative": [
|
|
166
|
+
"password"
|
|
167
|
+
],
|
|
168
|
+
"encryptedNative": [
|
|
169
|
+
"password"
|
|
170
|
+
],
|
|
171
|
+
"native": {
|
|
172
|
+
"accountName": "",
|
|
173
|
+
"password": "",
|
|
174
|
+
"scanInterval": 30,
|
|
175
|
+
"courtyardId": "",
|
|
176
|
+
"createRawStates": false
|
|
177
|
+
},
|
|
178
|
+
"objects": [],
|
|
179
|
+
"instanceObjects": [
|
|
180
|
+
{
|
|
181
|
+
"_id": "info",
|
|
182
|
+
"type": "channel",
|
|
183
|
+
"common": {
|
|
184
|
+
"name": "Information"
|
|
185
|
+
},
|
|
186
|
+
"native": {}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"_id": "info.connection",
|
|
190
|
+
"type": "state",
|
|
191
|
+
"common": {
|
|
192
|
+
"name": "Cloud connection",
|
|
193
|
+
"type": "boolean",
|
|
194
|
+
"role": "indicator.connected",
|
|
195
|
+
"read": true,
|
|
196
|
+
"write": false,
|
|
197
|
+
"def": false
|
|
198
|
+
},
|
|
199
|
+
"native": {}
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"_id": "info.region",
|
|
203
|
+
"type": "state",
|
|
204
|
+
"common": {
|
|
205
|
+
"name": "Detected API region",
|
|
206
|
+
"type": "string",
|
|
207
|
+
"role": "text",
|
|
208
|
+
"read": true,
|
|
209
|
+
"write": false,
|
|
210
|
+
"def": ""
|
|
211
|
+
},
|
|
212
|
+
"native": {}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"_id": "info.courtyard",
|
|
216
|
+
"type": "state",
|
|
217
|
+
"common": {
|
|
218
|
+
"name": "Selected courtyard",
|
|
219
|
+
"type": "string",
|
|
220
|
+
"role": "text",
|
|
221
|
+
"read": true,
|
|
222
|
+
"write": false,
|
|
223
|
+
"def": ""
|
|
224
|
+
},
|
|
225
|
+
"native": {}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
228
|
+
}
|