zigbee-herdsman-converters 20.1.1 → 20.3.0
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/CHANGELOG.md +44 -0
- package/converters/toZigbee.d.ts +340 -340
- package/devices/ctm.d.ts.map +1 -1
- package/devices/ctm.js +41 -0
- package/devices/ctm.js.map +1 -1
- package/devices/elko.js +2 -2
- package/devices/gledopto.d.ts.map +1 -1
- package/devices/gledopto.js +14 -6
- package/devices/gledopto.js.map +1 -1
- package/devices/ikea.d.ts.map +1 -1
- package/devices/ikea.js +13 -7
- package/devices/ikea.js.map +1 -1
- package/devices/immax.js +1 -1
- package/devices/immax.js.map +1 -1
- package/devices/lanesto.js +1 -1
- package/devices/lanesto.js.map +1 -1
- package/devices/lonsonho.js +2 -2
- package/devices/lonsonho.js.map +1 -1
- package/devices/lumi.d.ts.map +1 -1
- package/devices/lumi.js +31 -1
- package/devices/lumi.js.map +1 -1
- package/devices/osram.d.ts.map +1 -1
- package/devices/osram.js +7 -0
- package/devices/osram.js.map +1 -1
- package/devices/philips.d.ts.map +1 -1
- package/devices/philips.js +14 -0
- package/devices/philips.js.map +1 -1
- package/devices/robb.d.ts.map +1 -1
- package/devices/robb.js +16 -0
- package/devices/robb.js.map +1 -1
- package/devices/tuya.d.ts.map +1 -1
- package/devices/tuya.js +23 -5
- package/devices/tuya.js.map +1 -1
- package/devices/vimar.js +1 -1
- package/devices/vimar.js.map +1 -1
- package/lib/generateDefinition.js +0 -1
- package/lib/generateDefinition.js.map +1 -1
- package/lib/ledvance.d.ts +1 -1
- package/lib/legacy.d.ts +123 -123
- package/lib/legrand.d.ts +6 -6
- package/lib/lumi.d.ts +103 -87
- package/lib/lumi.d.ts.map +1 -1
- package/lib/lumi.js +210 -1
- package/lib/lumi.js.map +1 -1
- package/lib/philips.d.ts +10 -10
- package/lib/tuya.d.ts +22 -19
- package/lib/tuya.d.ts.map +1 -1
- package/lib/tuya.js +14 -1
- package/lib/tuya.js.map +1 -1
- package/lib/zosung.d.ts +2 -2
- package/package.json +7 -7
package/lib/legacy.d.ts
CHANGED
|
@@ -5275,71 +5275,71 @@ declare const fromZigbee: {
|
|
|
5275
5275
|
declare const toZigbee: {
|
|
5276
5276
|
zb_sm_cover: {
|
|
5277
5277
|
key: string[];
|
|
5278
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5278
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5279
5279
|
};
|
|
5280
5280
|
x5h_thermostat: {
|
|
5281
5281
|
key: string[];
|
|
5282
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5282
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5283
5283
|
};
|
|
5284
5284
|
zs_thermostat_child_lock: {
|
|
5285
5285
|
key: string[];
|
|
5286
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5286
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5287
5287
|
};
|
|
5288
5288
|
zs_thermostat_binary_one: {
|
|
5289
5289
|
key: string[];
|
|
5290
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5290
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5291
5291
|
};
|
|
5292
5292
|
zs_thermostat_binary_two: {
|
|
5293
5293
|
key: string[];
|
|
5294
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5294
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5295
5295
|
};
|
|
5296
5296
|
zs_thermostat_current_heating_setpoint: {
|
|
5297
5297
|
key: string[];
|
|
5298
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5298
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5299
5299
|
};
|
|
5300
5300
|
zs_thermostat_current_heating_setpoint_auto: {
|
|
5301
5301
|
key: string[];
|
|
5302
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5302
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5303
5303
|
};
|
|
5304
5304
|
zs_thermostat_comfort_temp: {
|
|
5305
5305
|
key: string[];
|
|
5306
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5306
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5307
5307
|
};
|
|
5308
5308
|
zs_thermostat_openwindow_temp: {
|
|
5309
5309
|
key: string[];
|
|
5310
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5310
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5311
5311
|
};
|
|
5312
5312
|
zs_thermostat_openwindow_time: {
|
|
5313
5313
|
key: string[];
|
|
5314
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5314
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5315
5315
|
};
|
|
5316
5316
|
zs_thermostat_eco_temp: {
|
|
5317
5317
|
key: string[];
|
|
5318
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5318
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5319
5319
|
};
|
|
5320
5320
|
zs_thermostat_preset_mode: {
|
|
5321
5321
|
key: string[];
|
|
5322
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5322
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5323
5323
|
};
|
|
5324
5324
|
zs_thermostat_system_mode: {
|
|
5325
5325
|
key: string[];
|
|
5326
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5326
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5327
5327
|
};
|
|
5328
5328
|
zs_thermostat_local_temperature_calibration: {
|
|
5329
5329
|
key: string[];
|
|
5330
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5330
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5331
5331
|
};
|
|
5332
5332
|
zs_thermostat_away_setting: {
|
|
5333
5333
|
key: string[];
|
|
5334
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5334
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: KeyValueAny, meta: Tz.Meta) => Promise<void>;
|
|
5335
5335
|
};
|
|
5336
5336
|
zs_thermostat_local_schedule: {
|
|
5337
5337
|
key: string[];
|
|
5338
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5338
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5339
5339
|
};
|
|
5340
5340
|
giexWaterValve: {
|
|
5341
5341
|
key: string[];
|
|
5342
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5342
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
5343
5343
|
state: {
|
|
5344
5344
|
[x: string]: any;
|
|
5345
5345
|
};
|
|
@@ -5347,11 +5347,11 @@ declare const toZigbee: {
|
|
|
5347
5347
|
};
|
|
5348
5348
|
tuya_alecto_smoke: {
|
|
5349
5349
|
key: string[];
|
|
5350
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5350
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5351
5351
|
};
|
|
5352
5352
|
matsee_garage_door_opener: {
|
|
5353
5353
|
key: string[];
|
|
5354
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5354
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
5355
5355
|
state: {
|
|
5356
5356
|
trigger: unknown;
|
|
5357
5357
|
};
|
|
@@ -5359,51 +5359,51 @@ declare const toZigbee: {
|
|
|
5359
5359
|
};
|
|
5360
5360
|
connecte_thermostat: {
|
|
5361
5361
|
key: string[];
|
|
5362
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5362
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5363
5363
|
};
|
|
5364
5364
|
moes_thermostat_child_lock: {
|
|
5365
5365
|
key: string[];
|
|
5366
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5366
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5367
5367
|
};
|
|
5368
5368
|
moes_thermostat_current_heating_setpoint: {
|
|
5369
5369
|
key: string[];
|
|
5370
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5370
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5371
5371
|
};
|
|
5372
5372
|
moes_thermostat_deadzone_temperature: {
|
|
5373
5373
|
key: string[];
|
|
5374
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5374
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5375
5375
|
};
|
|
5376
5376
|
moes_thermostat_calibration: {
|
|
5377
5377
|
key: string[];
|
|
5378
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5378
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5379
5379
|
};
|
|
5380
5380
|
moes_thermostat_min_temperature_limit: {
|
|
5381
5381
|
key: string[];
|
|
5382
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5382
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5383
5383
|
};
|
|
5384
5384
|
moes_thermostat_max_temperature_limit: {
|
|
5385
5385
|
key: string[];
|
|
5386
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5386
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5387
5387
|
};
|
|
5388
5388
|
moes_thermostat_mode: {
|
|
5389
5389
|
key: string[];
|
|
5390
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5390
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5391
5391
|
};
|
|
5392
5392
|
moes_thermostat_mode2: {
|
|
5393
5393
|
key: string[];
|
|
5394
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5394
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5395
5395
|
};
|
|
5396
5396
|
moes_thermostat_standby: {
|
|
5397
5397
|
key: string[];
|
|
5398
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5398
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5399
5399
|
};
|
|
5400
5400
|
moes_thermostat_program_schedule: {
|
|
5401
5401
|
key: string[];
|
|
5402
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5402
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5403
5403
|
};
|
|
5404
5404
|
moesS_thermostat_system_mode: {
|
|
5405
5405
|
key: string[];
|
|
5406
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5406
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
5407
5407
|
state: {
|
|
5408
5408
|
system_mode: string;
|
|
5409
5409
|
};
|
|
@@ -5411,75 +5411,75 @@ declare const toZigbee: {
|
|
|
5411
5411
|
};
|
|
5412
5412
|
moesS_thermostat_preset: {
|
|
5413
5413
|
key: string[];
|
|
5414
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5414
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5415
5415
|
};
|
|
5416
5416
|
moesS_thermostat_current_heating_setpoint: {
|
|
5417
5417
|
key: string[];
|
|
5418
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5418
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5419
5419
|
};
|
|
5420
5420
|
moesS_thermostat_boost_heating: {
|
|
5421
5421
|
key: string[];
|
|
5422
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5422
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5423
5423
|
};
|
|
5424
5424
|
moesS_thermostat_window_detection: {
|
|
5425
5425
|
key: string[];
|
|
5426
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5426
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5427
5427
|
};
|
|
5428
5428
|
moesS_thermostat_child_lock: {
|
|
5429
5429
|
key: string[];
|
|
5430
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5430
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5431
5431
|
};
|
|
5432
5432
|
moesS_thermostat_boostHeatingCountdownTimeSet: {
|
|
5433
5433
|
key: string[];
|
|
5434
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5434
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5435
5435
|
};
|
|
5436
5436
|
moesS_thermostat_temperature_calibration: {
|
|
5437
5437
|
key: string[];
|
|
5438
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5438
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5439
5439
|
};
|
|
5440
5440
|
moesS_thermostat_moesSecoMode: {
|
|
5441
5441
|
key: string[];
|
|
5442
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5442
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5443
5443
|
};
|
|
5444
5444
|
moesS_thermostat_eco_temperature: {
|
|
5445
5445
|
key: string[];
|
|
5446
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5446
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5447
5447
|
};
|
|
5448
5448
|
moesS_thermostat_max_temperature: {
|
|
5449
5449
|
key: string[];
|
|
5450
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5450
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5451
5451
|
};
|
|
5452
5452
|
moesS_thermostat_min_temperature: {
|
|
5453
5453
|
key: string[];
|
|
5454
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5454
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5455
5455
|
};
|
|
5456
5456
|
moesS_thermostat_schedule_programming: {
|
|
5457
5457
|
key: string[];
|
|
5458
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5458
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: string, meta: Tz.Meta) => Promise<void>;
|
|
5459
5459
|
};
|
|
5460
5460
|
hgkg_thermostat_standby: {
|
|
5461
5461
|
key: string[];
|
|
5462
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5462
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5463
5463
|
};
|
|
5464
5464
|
moes_switch: {
|
|
5465
5465
|
key: string[];
|
|
5466
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5466
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5467
5467
|
};
|
|
5468
5468
|
moes_thermostat_sensor: {
|
|
5469
5469
|
key: string[];
|
|
5470
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5470
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5471
5471
|
};
|
|
5472
5472
|
tuya_dimmer_state: {
|
|
5473
5473
|
key: string[];
|
|
5474
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5474
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5475
5475
|
};
|
|
5476
5476
|
tuya_dimmer_level: {
|
|
5477
5477
|
key: string[];
|
|
5478
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5478
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5479
5479
|
};
|
|
5480
5480
|
tuya_switch_state: {
|
|
5481
5481
|
key: string[];
|
|
5482
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5482
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<{
|
|
5483
5483
|
state: {
|
|
5484
5484
|
state: any;
|
|
5485
5485
|
};
|
|
@@ -5487,7 +5487,7 @@ declare const toZigbee: {
|
|
|
5487
5487
|
};
|
|
5488
5488
|
frankever_threshold: {
|
|
5489
5489
|
key: string[];
|
|
5490
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5490
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<{
|
|
5491
5491
|
state: {
|
|
5492
5492
|
threshold: number;
|
|
5493
5493
|
};
|
|
@@ -5495,7 +5495,7 @@ declare const toZigbee: {
|
|
|
5495
5495
|
};
|
|
5496
5496
|
frankever_timer: {
|
|
5497
5497
|
key: string[];
|
|
5498
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5498
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<{
|
|
5499
5499
|
state: {
|
|
5500
5500
|
timer: number;
|
|
5501
5501
|
};
|
|
@@ -5503,7 +5503,7 @@ declare const toZigbee: {
|
|
|
5503
5503
|
};
|
|
5504
5504
|
ZVG1_timer: {
|
|
5505
5505
|
key: string[];
|
|
5506
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5506
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<{
|
|
5507
5507
|
state: {
|
|
5508
5508
|
timer: number;
|
|
5509
5509
|
};
|
|
@@ -5511,123 +5511,123 @@ declare const toZigbee: {
|
|
|
5511
5511
|
};
|
|
5512
5512
|
ZVG1_weather_delay: {
|
|
5513
5513
|
key: string[];
|
|
5514
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5514
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: string, meta: Tz.Meta) => Promise<void>;
|
|
5515
5515
|
};
|
|
5516
5516
|
ZVG1_cycle_timer: {
|
|
5517
5517
|
key: string[];
|
|
5518
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5518
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: string, meta: Tz.Meta) => Promise<KeyValueAny>;
|
|
5519
5519
|
};
|
|
5520
5520
|
ZVG1_normal_schedule_timer: {
|
|
5521
5521
|
key: string[];
|
|
5522
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5522
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: string, meta: Tz.Meta) => Promise<KeyValueAny>;
|
|
5523
5523
|
};
|
|
5524
5524
|
etop_thermostat_system_mode: {
|
|
5525
5525
|
key: string[];
|
|
5526
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5526
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5527
5527
|
};
|
|
5528
5528
|
etop_thermostat_away_mode: {
|
|
5529
5529
|
key: string[];
|
|
5530
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5530
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5531
5531
|
};
|
|
5532
5532
|
tuya_thermostat_weekly_schedule: {
|
|
5533
5533
|
key: string[];
|
|
5534
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5534
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5535
5535
|
};
|
|
5536
5536
|
tuya_thermostat_child_lock: {
|
|
5537
5537
|
key: string[];
|
|
5538
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5538
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5539
5539
|
};
|
|
5540
5540
|
tuya_thermostat_window_detection: {
|
|
5541
5541
|
key: string[];
|
|
5542
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5542
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5543
5543
|
};
|
|
5544
5544
|
siterwell_thermostat_window_detection: {
|
|
5545
5545
|
key: string[];
|
|
5546
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5546
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5547
5547
|
};
|
|
5548
5548
|
tuya_thermostat_valve_detection: {
|
|
5549
5549
|
key: string[];
|
|
5550
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5550
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5551
5551
|
};
|
|
5552
5552
|
tuya_thermostat_current_heating_setpoint: {
|
|
5553
5553
|
key: string[];
|
|
5554
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5554
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5555
5555
|
};
|
|
5556
5556
|
tuya_thermostat_system_mode: {
|
|
5557
5557
|
key: string[];
|
|
5558
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5558
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5559
5559
|
};
|
|
5560
5560
|
tuya_thermostat_preset: {
|
|
5561
5561
|
key: string[];
|
|
5562
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5562
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5563
5563
|
};
|
|
5564
5564
|
tuya_thermostat_away_mode: {
|
|
5565
5565
|
key: string[];
|
|
5566
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5566
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5567
5567
|
};
|
|
5568
5568
|
tuya_thermostat_fan_mode: {
|
|
5569
5569
|
key: string[];
|
|
5570
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5570
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5571
5571
|
};
|
|
5572
5572
|
tuya_thermostat_bac_fan_mode: {
|
|
5573
5573
|
key: string[];
|
|
5574
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5574
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5575
5575
|
};
|
|
5576
5576
|
tuya_thermostat_auto_lock: {
|
|
5577
5577
|
key: string[];
|
|
5578
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5578
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5579
5579
|
};
|
|
5580
5580
|
tuya_thermostat_calibration: {
|
|
5581
5581
|
key: string[];
|
|
5582
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5582
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: number, meta: Tz.Meta) => Promise<void>;
|
|
5583
5583
|
};
|
|
5584
5584
|
tuya_thermostat_min_temp: {
|
|
5585
5585
|
key: string[];
|
|
5586
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5586
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5587
5587
|
};
|
|
5588
5588
|
tuya_thermostat_max_temp: {
|
|
5589
5589
|
key: string[];
|
|
5590
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5590
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5591
5591
|
};
|
|
5592
5592
|
tuya_thermostat_boost_time: {
|
|
5593
5593
|
key: string[];
|
|
5594
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5594
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5595
5595
|
};
|
|
5596
5596
|
tuya_thermostat_comfort_temp: {
|
|
5597
5597
|
key: string[];
|
|
5598
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5598
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5599
5599
|
};
|
|
5600
5600
|
tuya_thermostat_eco_temp: {
|
|
5601
5601
|
key: string[];
|
|
5602
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5602
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5603
5603
|
};
|
|
5604
5604
|
tuya_thermostat_force: {
|
|
5605
5605
|
key: string[];
|
|
5606
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5606
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5607
5607
|
};
|
|
5608
5608
|
tuya_thermostat_force_to_mode: {
|
|
5609
5609
|
key: string[];
|
|
5610
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5610
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5611
5611
|
};
|
|
5612
5612
|
tuya_thermostat_away_preset: {
|
|
5613
5613
|
key: string[];
|
|
5614
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5614
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5615
5615
|
};
|
|
5616
5616
|
tuya_thermostat_window_detect: {
|
|
5617
5617
|
key: string[];
|
|
5618
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5618
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: KeyValueAny, meta: Tz.Meta) => Promise<void>;
|
|
5619
5619
|
};
|
|
5620
5620
|
tuya_thermostat_schedule: {
|
|
5621
5621
|
key: string[];
|
|
5622
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5622
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5623
5623
|
};
|
|
5624
5624
|
tuya_thermostat_schedule_programming_mode: {
|
|
5625
5625
|
key: string[];
|
|
5626
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5626
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5627
5627
|
};
|
|
5628
5628
|
tuya_thermostat_week: {
|
|
5629
5629
|
key: string[];
|
|
5630
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5630
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<{
|
|
5631
5631
|
state: {
|
|
5632
5632
|
week: any;
|
|
5633
5633
|
};
|
|
@@ -5635,124 +5635,124 @@ declare const toZigbee: {
|
|
|
5635
5635
|
};
|
|
5636
5636
|
tuya_cover_options: {
|
|
5637
5637
|
key: string[];
|
|
5638
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5638
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5639
5639
|
};
|
|
5640
5640
|
neo_nas_pd07: {
|
|
5641
5641
|
key: string[];
|
|
5642
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5642
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5643
5643
|
};
|
|
5644
5644
|
neo_t_h_alarm: {
|
|
5645
5645
|
key: string[];
|
|
5646
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5646
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5647
5647
|
};
|
|
5648
5648
|
neo_alarm: {
|
|
5649
5649
|
key: string[];
|
|
5650
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5650
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5651
5651
|
};
|
|
5652
5652
|
nous_lcd_temperature_humidity_sensor: {
|
|
5653
5653
|
key: string[];
|
|
5654
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5654
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5655
5655
|
};
|
|
5656
5656
|
saswell_thermostat_current_heating_setpoint: {
|
|
5657
5657
|
key: string[];
|
|
5658
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5658
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5659
5659
|
};
|
|
5660
5660
|
saswell_thermostat_mode: {
|
|
5661
5661
|
key: string[];
|
|
5662
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5662
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5663
5663
|
};
|
|
5664
5664
|
saswell_thermostat_away: {
|
|
5665
5665
|
key: string[];
|
|
5666
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5666
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5667
5667
|
};
|
|
5668
5668
|
saswell_thermostat_child_lock: {
|
|
5669
5669
|
key: string[];
|
|
5670
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5670
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5671
5671
|
};
|
|
5672
5672
|
saswell_thermostat_window_detection: {
|
|
5673
5673
|
key: string[];
|
|
5674
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5674
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5675
5675
|
};
|
|
5676
5676
|
saswell_thermostat_frost_detection: {
|
|
5677
5677
|
key: string[];
|
|
5678
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5678
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5679
5679
|
};
|
|
5680
5680
|
saswell_thermostat_anti_scaling: {
|
|
5681
5681
|
key: string[];
|
|
5682
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5682
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5683
5683
|
};
|
|
5684
5684
|
saswell_thermostat_calibration: {
|
|
5685
5685
|
key: string[];
|
|
5686
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5686
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5687
5687
|
};
|
|
5688
5688
|
evanell_thermostat_current_heating_setpoint: {
|
|
5689
5689
|
key: string[];
|
|
5690
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5690
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5691
5691
|
};
|
|
5692
5692
|
evanell_thermostat_system_mode: {
|
|
5693
5693
|
key: string[];
|
|
5694
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5694
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5695
5695
|
};
|
|
5696
5696
|
evanell_thermostat_child_lock: {
|
|
5697
5697
|
key: string[];
|
|
5698
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5698
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5699
5699
|
};
|
|
5700
5700
|
silvercrest_smart_led_string: {
|
|
5701
5701
|
key: string[];
|
|
5702
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5702
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5703
5703
|
};
|
|
5704
5704
|
tuya_data_point_test: {
|
|
5705
5705
|
key: string[];
|
|
5706
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5706
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: string, meta: Tz.Meta) => Promise<void>;
|
|
5707
5707
|
};
|
|
5708
5708
|
hy_thermostat: {
|
|
5709
5709
|
key: string[];
|
|
5710
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5710
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5711
5711
|
};
|
|
5712
5712
|
ZB003X: {
|
|
5713
5713
|
key: string[];
|
|
5714
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5714
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5715
5715
|
};
|
|
5716
5716
|
ZB006X_settings: {
|
|
5717
5717
|
key: string[];
|
|
5718
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5718
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5719
5719
|
};
|
|
5720
5720
|
tuya_motion_sensor: {
|
|
5721
5721
|
key: string[];
|
|
5722
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5722
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5723
5723
|
};
|
|
5724
5724
|
javis_microwave_sensor: {
|
|
5725
5725
|
key: string[];
|
|
5726
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5726
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5727
5727
|
};
|
|
5728
5728
|
moes_thermostat_tv: {
|
|
5729
5729
|
key: string[];
|
|
5730
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5730
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5731
5731
|
};
|
|
5732
5732
|
tuya_light_wz5: {
|
|
5733
5733
|
key: string[];
|
|
5734
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5734
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<{
|
|
5735
5735
|
state: KeyValueAny;
|
|
5736
5736
|
}>;
|
|
5737
5737
|
};
|
|
5738
5738
|
ZMAM02_cover: {
|
|
5739
5739
|
key: string[];
|
|
5740
5740
|
options: exposes.Binary[];
|
|
5741
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5741
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5742
5742
|
};
|
|
5743
5743
|
tuya_smart_human_presense_sensor: {
|
|
5744
5744
|
key: string[];
|
|
5745
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5745
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5746
5746
|
};
|
|
5747
5747
|
ZG204ZL_lms: {
|
|
5748
5748
|
key: string[];
|
|
5749
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5750
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5749
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5750
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, meta: Tz.Meta) => Promise<void>;
|
|
5751
5751
|
};
|
|
5752
5752
|
moes_cover: {
|
|
5753
5753
|
key: string[];
|
|
5754
5754
|
options: exposes.Binary[];
|
|
5755
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5755
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<{
|
|
5756
5756
|
state: {
|
|
5757
5757
|
position: any;
|
|
5758
5758
|
backlight?: undefined;
|
|
@@ -5774,7 +5774,7 @@ declare const toZigbee: {
|
|
|
5774
5774
|
};
|
|
5775
5775
|
hoch_din: {
|
|
5776
5776
|
key: string[];
|
|
5777
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5777
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<{
|
|
5778
5778
|
state: {
|
|
5779
5779
|
state: any;
|
|
5780
5780
|
child_lock?: undefined;
|
|
@@ -5818,44 +5818,44 @@ declare const toZigbee: {
|
|
|
5818
5818
|
};
|
|
5819
5819
|
SA12IZL_silence_siren: {
|
|
5820
5820
|
key: string[];
|
|
5821
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5821
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5822
5822
|
};
|
|
5823
5823
|
SA12IZL_alarm: {
|
|
5824
5824
|
key: string[];
|
|
5825
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5825
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5826
5826
|
};
|
|
5827
5827
|
R7049_silenceSiren: {
|
|
5828
5828
|
key: string[];
|
|
5829
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5829
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5830
5830
|
};
|
|
5831
5831
|
R7049_testAlarm: {
|
|
5832
5832
|
key: string[];
|
|
5833
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5833
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5834
5834
|
};
|
|
5835
5835
|
R7049_alarm: {
|
|
5836
5836
|
key: string[];
|
|
5837
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5837
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5838
5838
|
};
|
|
5839
5839
|
valve_state: {
|
|
5840
5840
|
key: string[];
|
|
5841
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5841
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5842
5842
|
};
|
|
5843
5843
|
shutdown_timer: {
|
|
5844
5844
|
key: string[];
|
|
5845
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5845
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5846
5846
|
};
|
|
5847
5847
|
valve_state_auto_shutdown: {
|
|
5848
5848
|
key: string[];
|
|
5849
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5849
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
5850
5850
|
};
|
|
5851
5851
|
hpsz: {
|
|
5852
5852
|
key: string[];
|
|
5853
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5853
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5854
5854
|
};
|
|
5855
5855
|
tuya_cover_control: {
|
|
5856
5856
|
key: string[];
|
|
5857
5857
|
options: exposes.Binary[];
|
|
5858
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
5858
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: any, meta: Tz.Meta) => Promise<void>;
|
|
5859
5859
|
};
|
|
5860
5860
|
};
|
|
5861
5861
|
export { fromZigbee as fz, fromZigbee, toZigbee as tz, toZigbee, thermostatControlSequenceOfOperations, thermostatSystemModes, tuyaHPSCheckingResult, thermostatSystemModes2, thermostatSystemModes3, thermostatSystemModes4, thermostatPresets, giexWaterValve, msLookups, ZMLookups, firstDpValue, dpValueFromEnum, dataPoints, dpValueFromBool, dpValueFromIntValue, dpValueFromRaw, dpValueFromBitmap, dpValueFromStringBuffer, moesSwitch, getDataValue, getTypeName, logUnexpectedDataPoint, logUnexpectedDataType, getDataPointNames, getCoverStateEnums, convertDecimalValueTo4ByteHexArray, sendDataPoints, convertStringToHexArray, sendDataPoint, sendDataPointValue, sendDataPointBool, sendDataPointEnum, sendDataPointRaw, sendDataPointBitmap, sendDataPointStringBuffer, convertRawToCycleTimer, logDataPoint, convertWeekdaysTo1ByteHexArray, convertRawToTimer, logUnexpectedDataValue, isCoverInverted, convertDecimalValueTo2ByteHexArray, convertTimeTo2ByteHexArray, getMetaValue, tuyaGetDataValue, ictcg1, };
|