homebridge-melcloud-control 4.6.1-beta.7 → 4.6.1-beta.9
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/config.schema.json +118 -123
- package/package.json +1 -1
package/config.schema.json
CHANGED
|
@@ -2369,153 +2369,148 @@
|
|
|
2369
2369
|
"title": "Air Conditioner",
|
|
2370
2370
|
"items": [
|
|
2371
2371
|
{
|
|
2372
|
-
"key": "accounts[].ataDevices
|
|
2372
|
+
"key": "accounts[].ataDevices",
|
|
2373
2373
|
"type": "tabarray",
|
|
2374
2374
|
"title": "{{ value.name || 'Air Conditioner' }}",
|
|
2375
2375
|
"items": [
|
|
2376
2376
|
{
|
|
2377
|
-
"key": "accounts[].ataDevices[]",
|
|
2377
|
+
"key": "accounts[].ataDevices[].id",
|
|
2378
|
+
"readonly": true
|
|
2379
|
+
},
|
|
2380
|
+
"accounts[].ataDevices[].displayType",
|
|
2381
|
+
{
|
|
2382
|
+
"title": "Settings",
|
|
2383
|
+
"type": "section",
|
|
2384
|
+
"description": "Section for setup device settings",
|
|
2385
|
+
"expandable": true,
|
|
2386
|
+
"expanded": false,
|
|
2387
|
+
"items": [
|
|
2388
|
+
"accounts[].ataDevices[].name",
|
|
2389
|
+
"accounts[].ataDevices[].heatDryFanMode",
|
|
2390
|
+
"accounts[].ataDevices[].coolDryFanMode",
|
|
2391
|
+
"accounts[].ataDevices[].autoDryFanMode"
|
|
2392
|
+
]
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"title": "Presets",
|
|
2396
|
+
"type": "section",
|
|
2397
|
+
"description": "Section for setup device presets",
|
|
2398
|
+
"expandable": true,
|
|
2399
|
+
"expanded": false,
|
|
2378
2400
|
"items": [
|
|
2379
2401
|
{
|
|
2380
|
-
"key": "accounts[].ataDevices[].
|
|
2381
|
-
"
|
|
2382
|
-
|
|
2383
|
-
|
|
2402
|
+
"key": "accounts[].ataDevices[].presets",
|
|
2403
|
+
"type": "tabarray",
|
|
2404
|
+
"title": "{{ value.name || 'Preset' }}",
|
|
2405
|
+
"items": [
|
|
2406
|
+
{
|
|
2407
|
+
"key": "accounts[].ataDevices[].presets[].id",
|
|
2408
|
+
"readonly": true
|
|
2409
|
+
},
|
|
2410
|
+
"accounts[].ataDevices[].presets[].displayType",
|
|
2411
|
+
"accounts[].ataDevices[].presets[].name",
|
|
2412
|
+
"accounts[].ataDevices[].presets[].namePrefix"
|
|
2413
|
+
]
|
|
2414
|
+
}
|
|
2415
|
+
],
|
|
2416
|
+
"condition": {
|
|
2417
|
+
"functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloud';"
|
|
2418
|
+
}
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
"title": "Scenes",
|
|
2422
|
+
"type": "section",
|
|
2423
|
+
"description": "Section for setup device scenes",
|
|
2424
|
+
"expandable": true,
|
|
2425
|
+
"expanded": false,
|
|
2426
|
+
"items": [
|
|
2384
2427
|
{
|
|
2385
|
-
"
|
|
2386
|
-
"type": "
|
|
2387
|
-
"
|
|
2388
|
-
"expandable": true,
|
|
2389
|
-
"expanded": false,
|
|
2428
|
+
"key": "accounts[].ataDevices[].scenes",
|
|
2429
|
+
"type": "tabarray",
|
|
2430
|
+
"title": "{{ value.name || 'Scene' }}",
|
|
2390
2431
|
"items": [
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2432
|
+
{
|
|
2433
|
+
"key": "accounts[].ataDevices[].scenes[].id",
|
|
2434
|
+
"readonly": true
|
|
2435
|
+
},
|
|
2436
|
+
"accounts[].ataDevices[].scenes[].displayType",
|
|
2437
|
+
"accounts[].ataDevices[].scenes[].name",
|
|
2438
|
+
"accounts[].ataDevices[].scenes[].namePrefix"
|
|
2395
2439
|
]
|
|
2396
|
-
}
|
|
2440
|
+
}
|
|
2441
|
+
],
|
|
2442
|
+
"condition": {
|
|
2443
|
+
"functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloudhome';"
|
|
2444
|
+
}
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"title": "Schedules",
|
|
2448
|
+
"type": "section",
|
|
2449
|
+
"description": "Section for setup device schedules",
|
|
2450
|
+
"expandable": true,
|
|
2451
|
+
"expanded": false,
|
|
2452
|
+
"items": [
|
|
2397
2453
|
{
|
|
2398
|
-
"
|
|
2399
|
-
"type": "
|
|
2400
|
-
"
|
|
2401
|
-
"expandable": true,
|
|
2402
|
-
"expanded": false,
|
|
2454
|
+
"key": "accounts[].ataDevices[].schedules",
|
|
2455
|
+
"type": "tabarray",
|
|
2456
|
+
"title": "{{ value.name || 'Schedule' }}",
|
|
2403
2457
|
"items": [
|
|
2404
2458
|
{
|
|
2405
|
-
"key": "accounts[].ataDevices[].
|
|
2406
|
-
"
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2459
|
+
"key": "accounts[].ataDevices[].schedules[].id",
|
|
2460
|
+
"readonly": true
|
|
2461
|
+
},
|
|
2462
|
+
"accounts[].ataDevices[].schedules[].displayType",
|
|
2463
|
+
"accounts[].ataDevices[].schedules[].name",
|
|
2464
|
+
"accounts[].ataDevices[].schedules[].namePrefix"
|
|
2465
|
+
]
|
|
2466
|
+
}
|
|
2467
|
+
],
|
|
2468
|
+
"condition": {
|
|
2469
|
+
"functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloudhome';"
|
|
2470
|
+
}
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
"title": "Monitoring And Control",
|
|
2474
|
+
"type": "section",
|
|
2475
|
+
"description": "Section for setup additional monitoring and control functions.",
|
|
2476
|
+
"expandable": true,
|
|
2477
|
+
"expanded": false,
|
|
2478
|
+
"items": [
|
|
2423
2479
|
{
|
|
2424
|
-
"
|
|
2425
|
-
"type": "
|
|
2426
|
-
"
|
|
2427
|
-
"expandable": true,
|
|
2428
|
-
"expanded": false,
|
|
2480
|
+
"key": "accounts[].ataDevices[]",
|
|
2481
|
+
"type": "tabarray",
|
|
2482
|
+
"title": "{{ value.title }}",
|
|
2429
2483
|
"items": [
|
|
2430
2484
|
{
|
|
2431
|
-
"
|
|
2432
|
-
"type": "tabarray",
|
|
2433
|
-
"title": "{{ value.name || 'Scene' }}",
|
|
2485
|
+
"title": "Sensors",
|
|
2434
2486
|
"items": [
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
"accounts[].ataDevices[].
|
|
2440
|
-
"accounts[].ataDevices[].scenes[].name",
|
|
2441
|
-
"accounts[].ataDevices[].scenes[].namePrefix"
|
|
2487
|
+
"accounts[].ataDevices[].temperatureSensor",
|
|
2488
|
+
"accounts[].ataDevices[].temperatureOutdoorSensor",
|
|
2489
|
+
"accounts[].ataDevices[].inStandbySensor",
|
|
2490
|
+
"accounts[].ataDevices[].connectSensor",
|
|
2491
|
+
"accounts[].ataDevices[].errorSensor"
|
|
2442
2492
|
]
|
|
2443
|
-
}
|
|
2444
|
-
],
|
|
2445
|
-
"condition": {
|
|
2446
|
-
"functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloudhome';"
|
|
2447
|
-
}
|
|
2448
|
-
},
|
|
2449
|
-
{
|
|
2450
|
-
"title": "Schedules",
|
|
2451
|
-
"type": "section",
|
|
2452
|
-
"description": "Section for setup device schedules",
|
|
2453
|
-
"expandable": true,
|
|
2454
|
-
"expanded": false,
|
|
2455
|
-
"items": [
|
|
2493
|
+
},
|
|
2456
2494
|
{
|
|
2457
|
-
"
|
|
2458
|
-
"type": "tabarray",
|
|
2459
|
-
"title": "{{ value.name || 'Schedule' }}",
|
|
2495
|
+
"title": "Functions",
|
|
2460
2496
|
"items": [
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
},
|
|
2465
|
-
"accounts[].ataDevices[].schedules[].displayType",
|
|
2466
|
-
"accounts[].ataDevices[].schedules[].name",
|
|
2467
|
-
"accounts[].ataDevices[].schedules[].namePrefix"
|
|
2497
|
+
"accounts[].ataDevices[].frostProtectionSupport",
|
|
2498
|
+
"accounts[].ataDevices[].overheatProtectionSupport",
|
|
2499
|
+
"accounts[].ataDevices[].holidayModeSupport"
|
|
2468
2500
|
]
|
|
2469
|
-
}
|
|
2470
|
-
],
|
|
2471
|
-
"condition": {
|
|
2472
|
-
"functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloudhome';"
|
|
2473
|
-
}
|
|
2474
|
-
},
|
|
2475
|
-
{
|
|
2476
|
-
"title": "Monitoring And Control",
|
|
2477
|
-
"type": "section",
|
|
2478
|
-
"description": "Section for setup additional monitoring and control functions.",
|
|
2479
|
-
"expandable": true,
|
|
2480
|
-
"expanded": false,
|
|
2481
|
-
"items": [
|
|
2501
|
+
},
|
|
2482
2502
|
{
|
|
2483
|
-
"
|
|
2484
|
-
"type": "tabarray",
|
|
2485
|
-
"title": "{{ value.title }}",
|
|
2503
|
+
"title": "Custom Functions",
|
|
2486
2504
|
"items": [
|
|
2487
2505
|
{
|
|
2488
|
-
"
|
|
2489
|
-
"
|
|
2490
|
-
|
|
2491
|
-
"accounts[].ataDevices[].temperatureOutdoorSensor",
|
|
2492
|
-
"accounts[].ataDevices[].inStandbySensor",
|
|
2493
|
-
"accounts[].ataDevices[].connectSensor",
|
|
2494
|
-
"accounts[].ataDevices[].errorSensor"
|
|
2495
|
-
]
|
|
2496
|
-
},
|
|
2497
|
-
{
|
|
2498
|
-
"title": "Functions",
|
|
2506
|
+
"key": "accounts[].ataDevices[].buttonsSensors",
|
|
2507
|
+
"type": "tabarray",
|
|
2508
|
+
"title": "{{ value.name || 'Function' }}",
|
|
2499
2509
|
"items": [
|
|
2500
|
-
"accounts[].ataDevices[].
|
|
2501
|
-
"accounts[].ataDevices[].
|
|
2502
|
-
"accounts[].ataDevices[].
|
|
2503
|
-
|
|
2504
|
-
},
|
|
2505
|
-
{
|
|
2506
|
-
"title": "Custom Functions",
|
|
2507
|
-
"items": [
|
|
2508
|
-
{
|
|
2509
|
-
"key": "accounts[].ataDevices[].buttonsSensors",
|
|
2510
|
-
"type": "tabarray",
|
|
2511
|
-
"title": "{{ value.name || 'Function' }}",
|
|
2512
|
-
"items": [
|
|
2513
|
-
"accounts[].ataDevices[].buttonsSensors[].displayType",
|
|
2514
|
-
"accounts[].ataDevices[].buttonsSensors[].mode",
|
|
2515
|
-
"accounts[].ataDevices[].buttonsSensors[].name",
|
|
2516
|
-
"accounts[].ataDevices[].buttonsSensors[].namePrefix"
|
|
2517
|
-
]
|
|
2518
|
-
}
|
|
2510
|
+
"accounts[].ataDevices[].buttonsSensors[].displayType",
|
|
2511
|
+
"accounts[].ataDevices[].buttonsSensors[].mode",
|
|
2512
|
+
"accounts[].ataDevices[].buttonsSensors[].name",
|
|
2513
|
+
"accounts[].ataDevices[].buttonsSensors[].namePrefix"
|
|
2519
2514
|
]
|
|
2520
2515
|
}
|
|
2521
2516
|
]
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.6.1-beta.
|
|
4
|
+
"version": "4.6.1-beta.9",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|