zigbee-herdsman-converters 25.9.0 → 25.11.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.
Files changed (38) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist/devices/bosch.d.ts.map +1 -1
  3. package/dist/devices/bosch.js +379 -54
  4. package/dist/devices/bosch.js.map +1 -1
  5. package/dist/devices/custom_devices_diy.d.ts.map +1 -1
  6. package/dist/devices/custom_devices_diy.js +11 -3
  7. package/dist/devices/custom_devices_diy.js.map +1 -1
  8. package/dist/devices/giex.js +2 -2
  9. package/dist/devices/innr.d.ts.map +1 -1
  10. package/dist/devices/innr.js +7 -0
  11. package/dist/devices/innr.js.map +1 -1
  12. package/dist/devices/inovelli.d.ts.map +1 -1
  13. package/dist/devices/inovelli.js +201 -223
  14. package/dist/devices/inovelli.js.map +1 -1
  15. package/dist/devices/lumi.d.ts.map +1 -1
  16. package/dist/devices/lumi.js +7 -2
  17. package/dist/devices/lumi.js.map +1 -1
  18. package/dist/devices/onokom.d.ts.map +1 -1
  19. package/dist/devices/onokom.js +621 -51
  20. package/dist/devices/onokom.js.map +1 -1
  21. package/dist/devices/philips.d.ts.map +1 -1
  22. package/dist/devices/philips.js +17 -2
  23. package/dist/devices/philips.js.map +1 -1
  24. package/dist/devices/seastar_intelligence.js +1 -1
  25. package/dist/devices/seastar_intelligence.js.map +1 -1
  26. package/dist/devices/slacky_diy.d.ts.map +1 -1
  27. package/dist/devices/slacky_diy.js +249 -2
  28. package/dist/devices/slacky_diy.js.map +1 -1
  29. package/dist/devices/sprut.d.ts.map +1 -1
  30. package/dist/devices/sprut.js +124 -0
  31. package/dist/devices/sprut.js.map +1 -1
  32. package/dist/devices/tuya.d.ts.map +1 -1
  33. package/dist/devices/tuya.js +12 -6
  34. package/dist/devices/tuya.js.map +1 -1
  35. package/dist/index.js +2 -2
  36. package/dist/index.js.map +1 -1
  37. package/dist/models-index.json +1 -1
  38. package/package.json +1 -1
@@ -95,7 +95,21 @@ exports.definitions = [
95
95
  fan_only: 7,
96
96
  dry: 8,
97
97
  },
98
- description: "System mode",
98
+ description: "Active mode",
99
+ }),
100
+ m.enumLookup({
101
+ name: "mode",
102
+ cluster: "hvacThermostat",
103
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
104
+ lookup: {
105
+ heat: 1,
106
+ cool: 2,
107
+ auto: 3,
108
+ dry: 4,
109
+ fan_only: 5,
110
+ },
111
+ description: "Modes",
112
+ zigbeeCommandOptions: { manufacturerCode },
99
113
  }),
100
114
  m.numeric({
101
115
  name: "outdoor_air_temperature",
@@ -111,7 +125,7 @@ exports.definitions = [
111
125
  cluster: "hvacFanCtrl",
112
126
  attribute: "fanMode",
113
127
  valueMin: 1,
114
- valueMax: 3,
128
+ valueMax: 5,
115
129
  valueStep: 1,
116
130
  description: "Fan speed modes: Auto(5), Low(1), Medium(2), Maximum(3)",
117
131
  }),
@@ -160,9 +174,24 @@ exports.definitions = [
160
174
  cluster: "hvacThermostat",
161
175
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
162
176
  valueMin: 0,
163
- valueMax: 1,
177
+ valueMax: 3,
164
178
  valueStep: 1,
165
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
179
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
180
+ zigbeeCommandOptions: { manufacturerCode },
181
+ }),
182
+ m.enumLookup({
183
+ name: "status_led",
184
+ cluster: "genOnOff",
185
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
186
+ lookup: {
187
+ normal_mode: 0,
188
+ disabled_if_no_errors: 1,
189
+ disabled_untill_reboot: 2,
190
+ always_disabled: 3,
191
+ green_untill_reboot: 8,
192
+ red_untill_reboot: 9,
193
+ },
194
+ description: "Status LED",
166
195
  zigbeeCommandOptions: { manufacturerCode },
167
196
  }),
168
197
  m.binary({
@@ -219,6 +248,18 @@ exports.definitions = [
219
248
  description: "Mold protection",
220
249
  zigbeeCommandOptions: { manufacturerCode },
221
250
  }),
251
+ m.numeric({
252
+ name: "indoor_heat_exchanger_temperature",
253
+ cluster: "hvacThermostat",
254
+ attribute: { ID: 0x4740, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
255
+ access: "STATE",
256
+ valueMin: 0,
257
+ valueMax: 100,
258
+ valueStep: 1,
259
+ unit: "°C",
260
+ description: "Indoor heat exchanger temperature",
261
+ zigbeeCommandOptions: { manufacturerCode },
262
+ }),
222
263
  m.binary({
223
264
  name: "screen_light",
224
265
  cluster: "hvacThermostat",
@@ -228,6 +269,38 @@ exports.definitions = [
228
269
  description: "Screen light",
229
270
  zigbeeCommandOptions: { manufacturerCode },
230
271
  }),
272
+ m.numeric({
273
+ name: "current_fan_rpm",
274
+ cluster: "hvacFanCtrl",
275
+ attribute: { ID: 0x4724, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
276
+ access: "STATE",
277
+ valueMin: 0,
278
+ valueMax: 100,
279
+ valueStep: 1,
280
+ description: "Current fan RPM",
281
+ zigbeeCommandOptions: { manufacturerCode },
282
+ }),
283
+ m.numeric({
284
+ name: "current_compressor_power",
285
+ cluster: "hvacFanCtrl",
286
+ attribute: { ID: 0x4721, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
287
+ access: "STATE",
288
+ valueMin: 0,
289
+ valueMax: 100,
290
+ valueStep: 1,
291
+ description: "Current compressor power",
292
+ zigbeeCommandOptions: { manufacturerCode },
293
+ }),
294
+ m.numeric({
295
+ name: "compressor_power_limit",
296
+ cluster: "hvacFanCtrl",
297
+ attribute: { ID: 0x4720, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
298
+ valueMin: 0,
299
+ valueMax: 100,
300
+ valueStep: 1,
301
+ description: "Compressor power limit",
302
+ zigbeeCommandOptions: { manufacturerCode },
303
+ }),
231
304
  ],
232
305
  fromZigbee: [],
233
306
  configure: async (device, coordinatorEndpoint, logger) => {
@@ -293,7 +366,21 @@ exports.definitions = [
293
366
  fan_only: 7,
294
367
  dry: 8,
295
368
  },
296
- description: "System mode",
369
+ description: "Active mode",
370
+ }),
371
+ m.enumLookup({
372
+ name: "mode",
373
+ cluster: "hvacThermostat",
374
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
375
+ lookup: {
376
+ heat: 1,
377
+ cool: 2,
378
+ auto: 3,
379
+ dry: 4,
380
+ fan_only: 5,
381
+ },
382
+ description: "Modes",
383
+ zigbeeCommandOptions: { manufacturerCode },
297
384
  }),
298
385
  m.numeric({
299
386
  name: "outdoor_air_temperature",
@@ -330,7 +417,7 @@ exports.definitions = [
330
417
  valueMin: 0,
331
418
  valueMax: 1,
332
419
  valueStep: 1,
333
- description: "Horizontal vaneк: Stopped(0), Swing(1)",
420
+ description: "Horizontal vanes: Stopped(0), Swing(1)",
334
421
  zigbeeCommandOptions: { manufacturerCode },
335
422
  }),
336
423
  m.numeric({
@@ -358,9 +445,24 @@ exports.definitions = [
358
445
  cluster: "hvacThermostat",
359
446
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
360
447
  valueMin: 0,
361
- valueMax: 1,
448
+ valueMax: 3,
362
449
  valueStep: 1,
363
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
450
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
451
+ zigbeeCommandOptions: { manufacturerCode },
452
+ }),
453
+ m.enumLookup({
454
+ name: "status_led",
455
+ cluster: "genOnOff",
456
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
457
+ lookup: {
458
+ normal_mode: 0,
459
+ disabled_if_no_errors: 1,
460
+ disabled_untill_reboot: 2,
461
+ always_disabled: 3,
462
+ green_untill_reboot: 8,
463
+ red_untill_reboot: 9,
464
+ },
465
+ description: "Status LED",
364
466
  zigbeeCommandOptions: { manufacturerCode },
365
467
  }),
366
468
  m.binary({
@@ -408,6 +510,27 @@ exports.definitions = [
408
510
  description: "Screen low bright",
409
511
  zigbeeCommandOptions: { manufacturerCode },
410
512
  }),
513
+ m.numeric({
514
+ name: "target_fan_rpm",
515
+ cluster: "hvacFanCtrl",
516
+ attribute: { ID: 0x4723, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
517
+ valueMin: 0,
518
+ valueMax: 100,
519
+ valueStep: 1,
520
+ description: "Target fan rpm",
521
+ zigbeeCommandOptions: { manufacturerCode },
522
+ }),
523
+ m.numeric({
524
+ name: "current_fan_rpm",
525
+ cluster: "hvacFanCtrl",
526
+ attribute: { ID: 0x4724, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
527
+ access: "STATE",
528
+ valueMin: 0,
529
+ valueMax: 100,
530
+ valueStep: 1,
531
+ description: "Current fan RPM",
532
+ zigbeeCommandOptions: { manufacturerCode },
533
+ }),
411
534
  ],
412
535
  fromZigbee: [],
413
536
  configure: async (device, coordinatorEndpoint, logger) => {
@@ -473,7 +596,21 @@ exports.definitions = [
473
596
  fan_only: 7,
474
597
  dry: 8,
475
598
  },
476
- description: "System mode",
599
+ description: "Active mode",
600
+ }),
601
+ m.enumLookup({
602
+ name: "mode",
603
+ cluster: "hvacThermostat",
604
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
605
+ lookup: {
606
+ heat: 1,
607
+ cool: 2,
608
+ auto: 3,
609
+ dry: 4,
610
+ fan_only: 5,
611
+ },
612
+ description: "Modes",
613
+ zigbeeCommandOptions: { manufacturerCode },
477
614
  }),
478
615
  m.numeric({
479
616
  name: "outdoor_air_temperature",
@@ -538,9 +675,24 @@ exports.definitions = [
538
675
  cluster: "hvacThermostat",
539
676
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
540
677
  valueMin: 0,
541
- valueMax: 1,
678
+ valueMax: 3,
542
679
  valueStep: 1,
543
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
680
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
681
+ zigbeeCommandOptions: { manufacturerCode },
682
+ }),
683
+ m.enumLookup({
684
+ name: "status_led",
685
+ cluster: "genOnOff",
686
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
687
+ lookup: {
688
+ normal_mode: 0,
689
+ disabled_if_no_errors: 1,
690
+ disabled_untill_reboot: 2,
691
+ always_disabled: 3,
692
+ green_untill_reboot: 8,
693
+ red_untill_reboot: 9,
694
+ },
695
+ description: "Status LED",
544
696
  zigbeeCommandOptions: { manufacturerCode },
545
697
  }),
546
698
  m.binary({
@@ -671,7 +823,21 @@ exports.definitions = [
671
823
  fan_only: 7,
672
824
  dry: 8,
673
825
  },
674
- description: "System mode",
826
+ description: "Active mode",
827
+ }),
828
+ m.enumLookup({
829
+ name: "mode",
830
+ cluster: "hvacThermostat",
831
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
832
+ lookup: {
833
+ heat: 1,
834
+ cool: 2,
835
+ auto: 3,
836
+ dry: 4,
837
+ fan_only: 5,
838
+ },
839
+ description: "Modes",
840
+ zigbeeCommandOptions: { manufacturerCode },
675
841
  }),
676
842
  m.numeric({
677
843
  name: "outdoor_air_temperature",
@@ -736,9 +902,24 @@ exports.definitions = [
736
902
  cluster: "hvacThermostat",
737
903
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
738
904
  valueMin: 0,
739
- valueMax: 1,
905
+ valueMax: 3,
740
906
  valueStep: 1,
741
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
907
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
908
+ zigbeeCommandOptions: { manufacturerCode },
909
+ }),
910
+ m.enumLookup({
911
+ name: "status_led",
912
+ cluster: "genOnOff",
913
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
914
+ lookup: {
915
+ normal_mode: 0,
916
+ disabled_if_no_errors: 1,
917
+ disabled_untill_reboot: 2,
918
+ always_disabled: 3,
919
+ green_untill_reboot: 8,
920
+ red_untill_reboot: 9,
921
+ },
922
+ description: "Status LED",
742
923
  zigbeeCommandOptions: { manufacturerCode },
743
924
  }),
744
925
  m.binary({
@@ -795,6 +976,18 @@ exports.definitions = [
795
976
  description: "Self cleaning",
796
977
  zigbeeCommandOptions: { manufacturerCode },
797
978
  }),
979
+ m.numeric({
980
+ name: "indoor_heat_exchanger_temperature",
981
+ cluster: "hvacThermostat",
982
+ attribute: { ID: 0x4740, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
983
+ access: "STATE",
984
+ valueMin: 0,
985
+ valueMax: 100,
986
+ valueStep: 1,
987
+ unit: "°C",
988
+ description: "Indoor heat exchanger temperature",
989
+ zigbeeCommandOptions: { manufacturerCode },
990
+ }),
798
991
  ],
799
992
  fromZigbee: [],
800
993
  configure: async (device, coordinatorEndpoint, logger) => {
@@ -860,7 +1053,21 @@ exports.definitions = [
860
1053
  fan_only: 7,
861
1054
  dry: 8,
862
1055
  },
863
- description: "System mode",
1056
+ description: "Active mode",
1057
+ }),
1058
+ m.enumLookup({
1059
+ name: "mode",
1060
+ cluster: "hvacThermostat",
1061
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1062
+ lookup: {
1063
+ heat: 1,
1064
+ cool: 2,
1065
+ auto: 3,
1066
+ dry: 4,
1067
+ fan_only: 5,
1068
+ },
1069
+ description: "Modes",
1070
+ zigbeeCommandOptions: { manufacturerCode },
864
1071
  }),
865
1072
  m.numeric({
866
1073
  name: "outdoor_air_temperature",
@@ -876,7 +1083,7 @@ exports.definitions = [
876
1083
  cluster: "hvacFanCtrl",
877
1084
  attribute: "fanMode",
878
1085
  valueMin: 1,
879
- valueMax: 3,
1086
+ valueMax: 5,
880
1087
  valueStep: 1,
881
1088
  description: "Fan speed modes: Auto(5), Low(1), Medium(2), Maximum(3)",
882
1089
  }),
@@ -925,9 +1132,24 @@ exports.definitions = [
925
1132
  cluster: "hvacThermostat",
926
1133
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
927
1134
  valueMin: 0,
928
- valueMax: 1,
1135
+ valueMax: 3,
929
1136
  valueStep: 1,
930
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
1137
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
1138
+ zigbeeCommandOptions: { manufacturerCode },
1139
+ }),
1140
+ m.enumLookup({
1141
+ name: "status_led",
1142
+ cluster: "genOnOff",
1143
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1144
+ lookup: {
1145
+ normal_mode: 0,
1146
+ disabled_if_no_errors: 1,
1147
+ disabled_untill_reboot: 2,
1148
+ always_disabled: 3,
1149
+ green_untill_reboot: 8,
1150
+ red_untill_reboot: 9,
1151
+ },
1152
+ description: "Status LED",
931
1153
  zigbeeCommandOptions: { manufacturerCode },
932
1154
  }),
933
1155
  m.binary({
@@ -1058,7 +1280,21 @@ exports.definitions = [
1058
1280
  fan_only: 7,
1059
1281
  dry: 8,
1060
1282
  },
1061
- description: "System mode",
1283
+ description: "Active mode",
1284
+ }),
1285
+ m.enumLookup({
1286
+ name: "mode",
1287
+ cluster: "hvacThermostat",
1288
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1289
+ lookup: {
1290
+ heat: 1,
1291
+ cool: 2,
1292
+ auto: 3,
1293
+ dry: 4,
1294
+ fan_only: 5,
1295
+ },
1296
+ description: "Modes",
1297
+ zigbeeCommandOptions: { manufacturerCode },
1062
1298
  }),
1063
1299
  m.numeric({
1064
1300
  name: "outdoor_air_temperature",
@@ -1123,9 +1359,24 @@ exports.definitions = [
1123
1359
  cluster: "hvacThermostat",
1124
1360
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1125
1361
  valueMin: 0,
1126
- valueMax: 1,
1362
+ valueMax: 3,
1127
1363
  valueStep: 1,
1128
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
1364
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
1365
+ zigbeeCommandOptions: { manufacturerCode },
1366
+ }),
1367
+ m.enumLookup({
1368
+ name: "status_led",
1369
+ cluster: "genOnOff",
1370
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1371
+ lookup: {
1372
+ normal_mode: 0,
1373
+ disabled_if_no_errors: 1,
1374
+ disabled_untill_reboot: 2,
1375
+ always_disabled: 3,
1376
+ green_untill_reboot: 8,
1377
+ red_untill_reboot: 9,
1378
+ },
1379
+ description: "Status LED",
1129
1380
  zigbeeCommandOptions: { manufacturerCode },
1130
1381
  }),
1131
1382
  m.binary({
@@ -1164,12 +1415,17 @@ exports.definitions = [
1164
1415
  description: "Sleep mode",
1165
1416
  zigbeeCommandOptions: { manufacturerCode },
1166
1417
  }),
1167
- m.binary({
1418
+ m.enumLookup({
1168
1419
  name: "smart_sleep_mode",
1169
1420
  cluster: "hvacThermostat",
1170
1421
  attribute: { ID: 0x4736, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1171
- valueOn: ["ON", 1],
1172
- valueOff: ["OFF", 0],
1422
+ lookup: {
1423
+ disabled: 0,
1424
+ ordinary: 1,
1425
+ for_old: 2,
1426
+ for_young: 3,
1427
+ for_kids: 4,
1428
+ },
1173
1429
  description: "Smart sleep mode",
1174
1430
  zigbeeCommandOptions: { manufacturerCode },
1175
1431
  }),
@@ -1182,12 +1438,15 @@ exports.definitions = [
1182
1438
  description: "Ionization",
1183
1439
  zigbeeCommandOptions: { manufacturerCode },
1184
1440
  }),
1185
- m.binary({
1441
+ m.enumLookup({
1186
1442
  name: "smart_eye",
1187
1443
  cluster: "hvacThermostat",
1188
1444
  attribute: { ID: 0x4735, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1189
- valueOn: ["ON", 1],
1190
- valueOff: ["OFF", 0],
1445
+ lookup: {
1446
+ disabled: 0,
1447
+ to_person: 1,
1448
+ from_person: 2,
1449
+ },
1191
1450
  description: "Smart eye",
1192
1451
  zigbeeCommandOptions: { manufacturerCode },
1193
1452
  }),
@@ -1209,6 +1468,52 @@ exports.definitions = [
1209
1468
  description: "Beeper",
1210
1469
  zigbeeCommandOptions: { manufacturerCode },
1211
1470
  }),
1471
+ m.numeric({
1472
+ name: "current_compressor_power",
1473
+ cluster: "hvacFanCtrl",
1474
+ attribute: { ID: 0x4721, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1475
+ access: "STATE",
1476
+ valueMin: 0,
1477
+ valueMax: 100,
1478
+ valueStep: 1,
1479
+ description: "Current compressor power",
1480
+ zigbeeCommandOptions: { manufacturerCode },
1481
+ }),
1482
+ m.numeric({
1483
+ name: "target_compressor_power",
1484
+ cluster: "hvacFanCtrl",
1485
+ attribute: { ID: 0x4722, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1486
+ access: "STATE",
1487
+ valueMin: 0,
1488
+ valueMax: 100,
1489
+ valueStep: 1,
1490
+ description: "Target compressor power",
1491
+ zigbeeCommandOptions: { manufacturerCode },
1492
+ }),
1493
+ m.numeric({
1494
+ name: "indoor_heat_exchanger_temperature",
1495
+ cluster: "hvacThermostat",
1496
+ attribute: { ID: 0x4740, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
1497
+ access: "STATE",
1498
+ valueMin: 0,
1499
+ valueMax: 100,
1500
+ valueStep: 1,
1501
+ unit: "°C",
1502
+ description: "Indoor heat exchanger temperature",
1503
+ zigbeeCommandOptions: { manufacturerCode },
1504
+ }),
1505
+ m.numeric({
1506
+ name: "outdoor_heat_exchanger_temperature",
1507
+ cluster: "hvacThermostat",
1508
+ attribute: { ID: 0x4741, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
1509
+ access: "STATE",
1510
+ valueMin: 0,
1511
+ valueMax: 100,
1512
+ valueStep: 1,
1513
+ unit: "°C",
1514
+ description: "Outdoor heat exchanger temperature",
1515
+ zigbeeCommandOptions: { manufacturerCode },
1516
+ }),
1212
1517
  ],
1213
1518
  fromZigbee: [],
1214
1519
  configure: async (device, coordinatorEndpoint, logger) => {
@@ -1274,14 +1579,28 @@ exports.definitions = [
1274
1579
  fan_only: 7,
1275
1580
  dry: 8,
1276
1581
  },
1277
- description: "System mode",
1582
+ description: "Active mode",
1583
+ }),
1584
+ m.enumLookup({
1585
+ name: "mode",
1586
+ cluster: "hvacThermostat",
1587
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1588
+ lookup: {
1589
+ heat: 1,
1590
+ cool: 2,
1591
+ auto: 3,
1592
+ dry: 4,
1593
+ fan_only: 5,
1594
+ },
1595
+ description: "Modes",
1596
+ zigbeeCommandOptions: { manufacturerCode },
1278
1597
  }),
1279
1598
  m.numeric({
1280
1599
  name: "zb_fan_speed",
1281
1600
  cluster: "hvacFanCtrl",
1282
1601
  attribute: "fanMode",
1283
1602
  valueMin: 1,
1284
- valueMax: 3,
1603
+ valueMax: 5,
1285
1604
  valueStep: 1,
1286
1605
  description: "Fan speed modes: Auto(5), Low(1), Medium(2), Maximum(3)",
1287
1606
  }),
@@ -1305,6 +1624,21 @@ exports.definitions = [
1305
1624
  description: "Smart fan speed: Auto (0), Low (1) ... Maximum (3)",
1306
1625
  zigbeeCommandOptions: { manufacturerCode },
1307
1626
  }),
1627
+ m.enumLookup({
1628
+ name: "status_led",
1629
+ cluster: "genOnOff",
1630
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1631
+ lookup: {
1632
+ normal_mode: 0,
1633
+ disabled_if_no_errors: 1,
1634
+ disabled_untill_reboot: 2,
1635
+ always_disabled: 3,
1636
+ green_untill_reboot: 8,
1637
+ red_untill_reboot: 9,
1638
+ },
1639
+ description: "Status LED",
1640
+ zigbeeCommandOptions: { manufacturerCode },
1641
+ }),
1308
1642
  ],
1309
1643
  fromZigbee: [],
1310
1644
  configure: async (device, coordinatorEndpoint, logger) => {
@@ -1370,7 +1704,21 @@ exports.definitions = [
1370
1704
  fan_only: 7,
1371
1705
  dry: 8,
1372
1706
  },
1373
- description: "System mode",
1707
+ description: "Active mode",
1708
+ }),
1709
+ m.enumLookup({
1710
+ name: "mode",
1711
+ cluster: "hvacThermostat",
1712
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1713
+ lookup: {
1714
+ heat: 1,
1715
+ cool: 2,
1716
+ auto: 3,
1717
+ dry: 4,
1718
+ fan_only: 5,
1719
+ },
1720
+ description: "Modes",
1721
+ zigbeeCommandOptions: { manufacturerCode },
1374
1722
  }),
1375
1723
  m.numeric({
1376
1724
  name: "zb_fan_speed",
@@ -1398,7 +1746,7 @@ exports.definitions = [
1398
1746
  valueMin: 0,
1399
1747
  valueMax: 1,
1400
1748
  valueStep: 1,
1401
- description: "Horizontal vaneк: Stopped(0), Swing(1)",
1749
+ description: "Horizontal vanes: Stopped(0), Swing(1)",
1402
1750
  zigbeeCommandOptions: { manufacturerCode },
1403
1751
  }),
1404
1752
  m.numeric({
@@ -1426,9 +1774,24 @@ exports.definitions = [
1426
1774
  cluster: "hvacThermostat",
1427
1775
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1428
1776
  valueMin: 0,
1429
- valueMax: 1,
1777
+ valueMax: 3,
1430
1778
  valueStep: 1,
1431
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
1779
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
1780
+ zigbeeCommandOptions: { manufacturerCode },
1781
+ }),
1782
+ m.enumLookup({
1783
+ name: "status_led",
1784
+ cluster: "genOnOff",
1785
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1786
+ lookup: {
1787
+ normal_mode: 0,
1788
+ disabled_if_no_errors: 1,
1789
+ disabled_untill_reboot: 2,
1790
+ always_disabled: 3,
1791
+ green_untill_reboot: 8,
1792
+ red_untill_reboot: 9,
1793
+ },
1794
+ description: "Status LED",
1432
1795
  zigbeeCommandOptions: { manufacturerCode },
1433
1796
  }),
1434
1797
  m.binary({
@@ -1449,6 +1812,16 @@ exports.definitions = [
1449
1812
  description: "Turbo mode",
1450
1813
  zigbeeCommandOptions: { manufacturerCode },
1451
1814
  }),
1815
+ m.numeric({
1816
+ name: "target_fan_rpm",
1817
+ cluster: "hvacFanCtrl",
1818
+ attribute: { ID: 0x4723, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1819
+ valueMin: 0,
1820
+ valueMax: 100,
1821
+ valueStep: 1,
1822
+ description: "Target fan rpm",
1823
+ zigbeeCommandOptions: { manufacturerCode },
1824
+ }),
1452
1825
  ],
1453
1826
  fromZigbee: [],
1454
1827
  configure: async (device, coordinatorEndpoint, logger) => {
@@ -1514,14 +1887,28 @@ exports.definitions = [
1514
1887
  fan_only: 7,
1515
1888
  dry: 8,
1516
1889
  },
1517
- description: "System mode",
1890
+ description: "Active mode",
1891
+ }),
1892
+ m.enumLookup({
1893
+ name: "mode",
1894
+ cluster: "hvacThermostat",
1895
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1896
+ lookup: {
1897
+ heat: 1,
1898
+ cool: 2,
1899
+ auto: 3,
1900
+ dry: 4,
1901
+ fan_only: 5,
1902
+ },
1903
+ description: "Modes",
1904
+ zigbeeCommandOptions: { manufacturerCode },
1518
1905
  }),
1519
1906
  m.numeric({
1520
1907
  name: "zb_fan_speed",
1521
1908
  cluster: "hvacFanCtrl",
1522
1909
  attribute: "fanMode",
1523
1910
  valueMin: 1,
1524
- valueMax: 3,
1911
+ valueMax: 5,
1525
1912
  valueStep: 1,
1526
1913
  description: "Fan speed modes: Auto(5), Low(1), Medium(2), Maximum(3)",
1527
1914
  }),
@@ -1560,9 +1947,24 @@ exports.definitions = [
1560
1947
  cluster: "hvacThermostat",
1561
1948
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1562
1949
  valueMin: 0,
1563
- valueMax: 1,
1564
- valueStep: 1,
1565
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
1950
+ valueMax: 2,
1951
+ valueStep: 2,
1952
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
1953
+ zigbeeCommandOptions: { manufacturerCode },
1954
+ }),
1955
+ m.enumLookup({
1956
+ name: "status_led",
1957
+ cluster: "genOnOff",
1958
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1959
+ lookup: {
1960
+ normal_mode: 0,
1961
+ disabled_if_no_errors: 1,
1962
+ disabled_untill_reboot: 2,
1963
+ always_disabled: 3,
1964
+ green_untill_reboot: 8,
1965
+ red_untill_reboot: 9,
1966
+ },
1967
+ description: "Status LED",
1566
1968
  zigbeeCommandOptions: { manufacturerCode },
1567
1969
  }),
1568
1970
  m.binary({
@@ -1574,6 +1976,30 @@ exports.definitions = [
1574
1976
  description: "Eco mode",
1575
1977
  zigbeeCommandOptions: { manufacturerCode },
1576
1978
  }),
1979
+ m.numeric({
1980
+ name: "indoor_heat_exchanger_temperature",
1981
+ cluster: "hvacThermostat",
1982
+ attribute: { ID: 0x4740, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
1983
+ access: "STATE",
1984
+ valueMin: 0,
1985
+ valueMax: 100,
1986
+ valueStep: 1,
1987
+ unit: "°C",
1988
+ description: "Indoor heat exchanger temperature",
1989
+ zigbeeCommandOptions: { manufacturerCode },
1990
+ }),
1991
+ m.numeric({
1992
+ name: "outdoor_heat_exchanger_temperature",
1993
+ cluster: "hvacThermostat",
1994
+ attribute: { ID: 0x4741, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
1995
+ access: "STATE",
1996
+ valueMin: 0,
1997
+ valueMax: 100,
1998
+ valueStep: 1,
1999
+ unit: "°C",
2000
+ description: "Outdoor heat exchanger temperature",
2001
+ zigbeeCommandOptions: { manufacturerCode },
2002
+ }),
1577
2003
  ],
1578
2004
  fromZigbee: [],
1579
2005
  configure: async (device, coordinatorEndpoint, logger) => {
@@ -1639,14 +2065,28 @@ exports.definitions = [
1639
2065
  fan_only: 7,
1640
2066
  dry: 8,
1641
2067
  },
1642
- description: "System mode",
2068
+ description: "Active mode",
2069
+ }),
2070
+ m.enumLookup({
2071
+ name: "mode",
2072
+ cluster: "hvacThermostat",
2073
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2074
+ lookup: {
2075
+ heat: 1,
2076
+ cool: 2,
2077
+ auto: 3,
2078
+ dry: 4,
2079
+ fan_only: 5,
2080
+ },
2081
+ description: "Modes",
2082
+ zigbeeCommandOptions: { manufacturerCode },
1643
2083
  }),
1644
2084
  m.numeric({
1645
2085
  name: "zb_fan_speed",
1646
2086
  cluster: "hvacFanCtrl",
1647
2087
  attribute: "fanMode",
1648
2088
  valueMin: 1,
1649
- valueMax: 4,
2089
+ valueMax: 5,
1650
2090
  valueStep: 1,
1651
2091
  description: "Fan speed modes: Auto(5), Low(1), Medium(2), Maximum(3)",
1652
2092
  }),
@@ -1695,9 +2135,24 @@ exports.definitions = [
1695
2135
  cluster: "hvacThermostat",
1696
2136
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1697
2137
  valueMin: 0,
1698
- valueMax: 1,
2138
+ valueMax: 3,
1699
2139
  valueStep: 1,
1700
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
2140
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
2141
+ zigbeeCommandOptions: { manufacturerCode },
2142
+ }),
2143
+ m.enumLookup({
2144
+ name: "status_led",
2145
+ cluster: "genOnOff",
2146
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2147
+ lookup: {
2148
+ normal_mode: 0,
2149
+ disabled_if_no_errors: 1,
2150
+ disabled_untill_reboot: 2,
2151
+ always_disabled: 3,
2152
+ green_untill_reboot: 8,
2153
+ red_untill_reboot: 9,
2154
+ },
2155
+ description: "Status LED",
1701
2156
  zigbeeCommandOptions: { manufacturerCode },
1702
2157
  }),
1703
2158
  m.binary({
@@ -1774,7 +2229,21 @@ exports.definitions = [
1774
2229
  fan_only: 7,
1775
2230
  dry: 8,
1776
2231
  },
1777
- description: "System mode",
2232
+ description: "Active mode",
2233
+ }),
2234
+ m.enumLookup({
2235
+ name: "mode",
2236
+ cluster: "hvacThermostat",
2237
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2238
+ lookup: {
2239
+ heat: 1,
2240
+ cool: 2,
2241
+ auto: 3,
2242
+ dry: 4,
2243
+ fan_only: 5,
2244
+ },
2245
+ description: "Modes",
2246
+ zigbeeCommandOptions: { manufacturerCode },
1778
2247
  }),
1779
2248
  m.numeric({
1780
2249
  name: "outdoor_air_temperature",
@@ -1839,9 +2308,24 @@ exports.definitions = [
1839
2308
  cluster: "hvacThermostat",
1840
2309
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
1841
2310
  valueMin: 0,
1842
- valueMax: 1,
2311
+ valueMax: 3,
1843
2312
  valueStep: 1,
1844
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
2313
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
2314
+ zigbeeCommandOptions: { manufacturerCode },
2315
+ }),
2316
+ m.enumLookup({
2317
+ name: "status_led",
2318
+ cluster: "genOnOff",
2319
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2320
+ lookup: {
2321
+ normal_mode: 0,
2322
+ disabled_if_no_errors: 1,
2323
+ disabled_untill_reboot: 2,
2324
+ always_disabled: 3,
2325
+ green_untill_reboot: 8,
2326
+ red_untill_reboot: 9,
2327
+ },
2328
+ description: "Status LED",
1845
2329
  zigbeeCommandOptions: { manufacturerCode },
1846
2330
  }),
1847
2331
  m.binary({
@@ -1943,6 +2427,51 @@ exports.definitions = [
1943
2427
  description: "Beeper",
1944
2428
  zigbeeCommandOptions: { manufacturerCode },
1945
2429
  }),
2430
+ m.numeric({
2431
+ name: "current_fan_rpm",
2432
+ cluster: "hvacFanCtrl",
2433
+ attribute: { ID: 0x4724, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2434
+ access: "STATE",
2435
+ valueMin: 0,
2436
+ valueMax: 100,
2437
+ valueStep: 1,
2438
+ description: "Current fan RPM",
2439
+ zigbeeCommandOptions: { manufacturerCode },
2440
+ }),
2441
+ m.numeric({
2442
+ name: "indoor_heat_exchanger_temperature",
2443
+ cluster: "hvacThermostat",
2444
+ attribute: { ID: 0x4740, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
2445
+ access: "STATE",
2446
+ valueMin: 0,
2447
+ valueMax: 100,
2448
+ valueStep: 1,
2449
+ unit: "°C",
2450
+ description: "Indoor heat exchanger temperature",
2451
+ zigbeeCommandOptions: { manufacturerCode },
2452
+ }),
2453
+ m.numeric({
2454
+ name: "outdoor_heat_exchanger_temperature",
2455
+ cluster: "hvacThermostat",
2456
+ attribute: { ID: 0x4741, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
2457
+ access: "STATE",
2458
+ valueMin: 0,
2459
+ valueMax: 100,
2460
+ valueStep: 1,
2461
+ unit: "°C",
2462
+ description: "Outdoor heat exchanger temperature",
2463
+ zigbeeCommandOptions: { manufacturerCode },
2464
+ }),
2465
+ m.numeric({
2466
+ name: "compressor_power_limit",
2467
+ cluster: "hvacFanCtrl",
2468
+ attribute: { ID: 0x4720, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2469
+ valueMin: 0,
2470
+ valueMax: 100,
2471
+ valueStep: 1,
2472
+ description: "Compressor power limit",
2473
+ zigbeeCommandOptions: { manufacturerCode },
2474
+ }),
1946
2475
  ],
1947
2476
  fromZigbee: [],
1948
2477
  configure: async (device, coordinatorEndpoint, logger) => {
@@ -2008,7 +2537,21 @@ exports.definitions = [
2008
2537
  fan_only: 7,
2009
2538
  dry: 8,
2010
2539
  },
2011
- description: "System mode",
2540
+ description: "Active mode",
2541
+ }),
2542
+ m.enumLookup({
2543
+ name: "mode",
2544
+ cluster: "hvacThermostat",
2545
+ attribute: { ID: 0x4703, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2546
+ lookup: {
2547
+ heat: 1,
2548
+ cool: 2,
2549
+ auto: 3,
2550
+ dry: 4,
2551
+ fan_only: 5,
2552
+ },
2553
+ description: "Modes",
2554
+ zigbeeCommandOptions: { manufacturerCode },
2012
2555
  }),
2013
2556
  m.numeric({
2014
2557
  name: "zb_fan_speed",
@@ -2033,10 +2576,10 @@ exports.definitions = [
2033
2576
  name: "horizontal_vanes",
2034
2577
  cluster: "hvacThermostat",
2035
2578
  attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2036
- valueMin: 1,
2037
- valueMax: 8,
2579
+ valueMin: 0,
2580
+ valueMax: 1,
2038
2581
  valueStep: 1,
2039
- description: "Horizontal vanes: Stopped(0), Swing(1), Lowest postion(2), Highest position(8)",
2582
+ description: "Horizontal vanes: Stopped(0), Swing(1)",
2040
2583
  zigbeeCommandOptions: { manufacturerCode },
2041
2584
  }),
2042
2585
  m.numeric({
@@ -2064,9 +2607,24 @@ exports.definitions = [
2064
2607
  cluster: "hvacThermostat",
2065
2608
  attribute: { ID: 0x4702, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2066
2609
  valueMin: 0,
2067
- valueMax: 1,
2610
+ valueMax: 3,
2068
2611
  valueStep: 1,
2069
- description: "Vanes swing: Stopped0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
2612
+ description: "Vanes swing: Stopped(0), Horizontal and vertical swing(1), Horizontal swing(2), Vertical swing(3)",
2613
+ zigbeeCommandOptions: { manufacturerCode },
2614
+ }),
2615
+ m.enumLookup({
2616
+ name: "status_led",
2617
+ cluster: "genOnOff",
2618
+ attribute: { ID: 0x4700, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
2619
+ lookup: {
2620
+ normal_mode: 0,
2621
+ disabled_if_no_errors: 1,
2622
+ disabled_untill_reboot: 2,
2623
+ always_disabled: 3,
2624
+ green_untill_reboot: 8,
2625
+ red_untill_reboot: 9,
2626
+ },
2627
+ description: "Status LED",
2070
2628
  zigbeeCommandOptions: { manufacturerCode },
2071
2629
  }),
2072
2630
  m.binary({
@@ -2114,6 +2672,18 @@ exports.definitions = [
2114
2672
  description: "Screen light",
2115
2673
  zigbeeCommandOptions: { manufacturerCode },
2116
2674
  }),
2675
+ m.numeric({
2676
+ name: "indoor_heat_exchanger_temperature",
2677
+ cluster: "hvacThermostat",
2678
+ attribute: { ID: 0x4740, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
2679
+ access: "STATE",
2680
+ valueMin: 0,
2681
+ valueMax: 100,
2682
+ valueStep: 1,
2683
+ unit: "°C",
2684
+ description: "Indoor heat exchanger temperature",
2685
+ zigbeeCommandOptions: { manufacturerCode },
2686
+ }),
2117
2687
  ],
2118
2688
  fromZigbee: [],
2119
2689
  configure: async (device, coordinatorEndpoint, logger) => {