zigbee-herdsman-converters 23.12.0 → 23.14.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 +39 -0
- package/dist/devices/bituo_technik.d.ts.map +1 -1
- package/dist/devices/bituo_technik.js +298 -42
- package/dist/devices/bituo_technik.js.map +1 -1
- package/dist/devices/efekta.d.ts.map +1 -1
- package/dist/devices/efekta.js +194 -17
- package/dist/devices/efekta.js.map +1 -1
- package/dist/devices/index.d.ts.map +1 -1
- package/dist/devices/index.js +6 -2
- package/dist/devices/index.js.map +1 -1
- package/dist/devices/lumi.d.ts.map +1 -1
- package/dist/devices/lumi.js +29 -0
- package/dist/devices/lumi.js.map +1 -1
- package/dist/devices/namron.d.ts.map +1 -1
- package/dist/devices/namron.js +20 -1
- package/dist/devices/namron.js.map +1 -1
- package/dist/devices/neo.js +2 -2
- package/dist/devices/shelly.d.ts +3 -0
- package/dist/devices/shelly.d.ts.map +1 -0
- package/dist/devices/shelly.js +47 -0
- package/dist/devices/shelly.js.map +1 -0
- package/dist/devices/slacky_diy.d.ts +3 -0
- package/dist/devices/slacky_diy.d.ts.map +1 -0
- package/dist/devices/slacky_diy.js +1643 -0
- package/dist/devices/slacky_diy.js.map +1 -0
- package/dist/devices/sonoff.d.ts.map +1 -1
- package/dist/devices/sonoff.js +1 -0
- package/dist/devices/sonoff.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +134 -2
- package/dist/devices/tuya.js.map +1 -1
- package/dist/devices/zemismart.d.ts.map +1 -1
- package/dist/devices/zemismart.js +239 -0
- package/dist/devices/zemismart.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +1 -1
package/dist/devices/efekta.js
CHANGED
|
@@ -58,26 +58,33 @@ exports.definitions = [
|
|
|
58
58
|
description: "CO2 Monitor with IPS TFT Display, outdoor temperature and humidity, date and time",
|
|
59
59
|
extend: [
|
|
60
60
|
m.deviceEndpoints({ endpoints: { "1": 1, "2": 2 } }),
|
|
61
|
-
m.co2({
|
|
61
|
+
m.co2({
|
|
62
|
+
reporting: co2Reporting,
|
|
63
|
+
access: "STATE",
|
|
64
|
+
}),
|
|
62
65
|
m.temperature({
|
|
63
66
|
endpointNames: ["1"],
|
|
64
67
|
description: "Measured value of the built-in temperature sensor",
|
|
65
68
|
reporting: fourReporting,
|
|
69
|
+
access: "STATE",
|
|
66
70
|
}),
|
|
67
71
|
m.temperature({
|
|
68
72
|
endpointNames: ["2"],
|
|
69
73
|
description: "Measured value of the external temperature sensor",
|
|
70
74
|
reporting: fourReporting,
|
|
75
|
+
access: "STATE",
|
|
71
76
|
}),
|
|
72
77
|
m.humidity({
|
|
73
78
|
endpointNames: ["1"],
|
|
74
79
|
description: "Measured value of the built-in humidity sensor",
|
|
75
80
|
reporting: fourReporting,
|
|
81
|
+
access: "STATE",
|
|
76
82
|
}),
|
|
77
83
|
m.humidity({
|
|
78
84
|
endpointNames: ["2"],
|
|
79
85
|
description: "Measured value of the external humidity sensor",
|
|
80
86
|
reporting: fourReporting,
|
|
87
|
+
access: "STATE",
|
|
81
88
|
}),
|
|
82
89
|
m.numeric({
|
|
83
90
|
name: "voc_index",
|
|
@@ -487,28 +494,38 @@ exports.definitions = [
|
|
|
487
494
|
description: "CO2 Monitor with IPS TFT Display, outdoor temperature and humidity, date and time",
|
|
488
495
|
extend: [
|
|
489
496
|
m.deviceEndpoints({ endpoints: { "1": 1, "2": 2 } }),
|
|
490
|
-
m.co2({
|
|
497
|
+
m.co2({
|
|
498
|
+
reporting: co2Reporting,
|
|
499
|
+
access: "STATE",
|
|
500
|
+
}),
|
|
491
501
|
m.temperature({
|
|
492
502
|
endpointNames: ["1"],
|
|
493
503
|
description: "Measured value of the built-in temperature sensor",
|
|
494
504
|
reporting: fourReporting,
|
|
505
|
+
access: "STATE",
|
|
495
506
|
}),
|
|
496
507
|
m.temperature({
|
|
497
508
|
endpointNames: ["2"],
|
|
498
509
|
description: "Measured value of the external temperature sensor",
|
|
499
510
|
reporting: fourReporting,
|
|
511
|
+
access: "STATE",
|
|
500
512
|
}),
|
|
501
513
|
m.humidity({
|
|
502
514
|
endpointNames: ["1"],
|
|
503
515
|
description: "Measured value of the built-in humidity sensor",
|
|
504
516
|
reporting: fourReporting,
|
|
517
|
+
access: "STATE",
|
|
505
518
|
}),
|
|
506
519
|
m.humidity({
|
|
507
520
|
endpointNames: ["2"],
|
|
508
521
|
description: "Measured value of the external humidity sensor",
|
|
509
522
|
reporting: fourReporting,
|
|
523
|
+
access: "STATE",
|
|
524
|
+
}),
|
|
525
|
+
m.illuminance({
|
|
526
|
+
reporting: fourReporting,
|
|
527
|
+
access: "STATE",
|
|
510
528
|
}),
|
|
511
|
-
m.illuminance({ reporting: fourReporting }),
|
|
512
529
|
m.numeric({
|
|
513
530
|
name: "reading_interval",
|
|
514
531
|
unit: "seconds",
|
|
@@ -517,6 +534,7 @@ exports.definitions = [
|
|
|
517
534
|
cluster: "msCO2",
|
|
518
535
|
attribute: { ID: 0x0201, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
519
536
|
description: "Setting the sensor reading interval.",
|
|
537
|
+
access: "STATE_SET",
|
|
520
538
|
}),
|
|
521
539
|
m.binary({
|
|
522
540
|
name: "auto_brightness",
|
|
@@ -525,6 +543,7 @@ exports.definitions = [
|
|
|
525
543
|
cluster: "msCO2",
|
|
526
544
|
attribute: { ID: 0x0203, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
527
545
|
description: "Enable or Disable Auto Brightness of the Display",
|
|
546
|
+
access: "STATE_SET",
|
|
528
547
|
}),
|
|
529
548
|
m.binary({
|
|
530
549
|
name: "night_onoff_backlight",
|
|
@@ -533,6 +552,7 @@ exports.definitions = [
|
|
|
533
552
|
cluster: "msCO2",
|
|
534
553
|
attribute: { ID: 0x0401, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
535
554
|
description: "Complete shutdown of the backlight at night mode",
|
|
555
|
+
access: "STATE_SET",
|
|
536
556
|
}),
|
|
537
557
|
m.numeric({
|
|
538
558
|
name: "night_on_backlight",
|
|
@@ -542,6 +562,7 @@ exports.definitions = [
|
|
|
542
562
|
cluster: "msCO2",
|
|
543
563
|
attribute: { ID: 0x0405, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
544
564
|
description: "Night mode activation time",
|
|
565
|
+
access: "STATE_SET",
|
|
545
566
|
}),
|
|
546
567
|
m.numeric({
|
|
547
568
|
name: "night_off_backlight",
|
|
@@ -551,6 +572,7 @@ exports.definitions = [
|
|
|
551
572
|
cluster: "msCO2",
|
|
552
573
|
attribute: { ID: 0x0406, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
553
574
|
description: "Night mode deactivation time",
|
|
575
|
+
access: "STATE_SET",
|
|
554
576
|
}),
|
|
555
577
|
m.enumLookup({
|
|
556
578
|
name: "rotate",
|
|
@@ -558,6 +580,7 @@ exports.definitions = [
|
|
|
558
580
|
cluster: "msCO2",
|
|
559
581
|
attribute: { ID: 0x0285, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
560
582
|
description: "Display rotation angle",
|
|
583
|
+
access: "STATE_SET",
|
|
561
584
|
}),
|
|
562
585
|
m.binary({
|
|
563
586
|
name: "long_chart_period",
|
|
@@ -566,6 +589,7 @@ exports.definitions = [
|
|
|
566
589
|
cluster: "msCO2",
|
|
567
590
|
attribute: { ID: 0x0204, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
568
591
|
description: "The period of plotting the CO2 level(OFF - 1H | ON - 24H)",
|
|
592
|
+
access: "STATE_SET",
|
|
569
593
|
}),
|
|
570
594
|
m.numeric({
|
|
571
595
|
name: "set_altitude",
|
|
@@ -575,6 +599,7 @@ exports.definitions = [
|
|
|
575
599
|
cluster: "msCO2",
|
|
576
600
|
attribute: { ID: 0x0205, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
577
601
|
description: "Setting the altitude above sea level (for high accuracy of the CO2 sensor)",
|
|
602
|
+
access: "STATE_SET",
|
|
578
603
|
}),
|
|
579
604
|
m.numeric({
|
|
580
605
|
name: "temperature_offset",
|
|
@@ -586,6 +611,7 @@ exports.definitions = [
|
|
|
586
611
|
cluster: "msTemperatureMeasurement",
|
|
587
612
|
attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
588
613
|
description: "Adjust temperature",
|
|
614
|
+
access: "STATE_SET",
|
|
589
615
|
}),
|
|
590
616
|
m.numeric({
|
|
591
617
|
name: "humidity_offset",
|
|
@@ -596,6 +622,7 @@ exports.definitions = [
|
|
|
596
622
|
cluster: "msRelativeHumidity",
|
|
597
623
|
attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
598
624
|
description: "Adjust humidity",
|
|
625
|
+
access: "STATE_SET",
|
|
599
626
|
}),
|
|
600
627
|
m.binary({
|
|
601
628
|
name: "automatic_calibrations",
|
|
@@ -604,6 +631,7 @@ exports.definitions = [
|
|
|
604
631
|
cluster: "msCO2",
|
|
605
632
|
attribute: { ID: 0x0402, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
606
633
|
description: "Automatic calibration of the CO2 sensor",
|
|
634
|
+
access: "STATE_SET",
|
|
607
635
|
}),
|
|
608
636
|
m.binary({
|
|
609
637
|
name: "forced_recalibration",
|
|
@@ -612,6 +640,7 @@ exports.definitions = [
|
|
|
612
640
|
cluster: "msCO2",
|
|
613
641
|
attribute: { ID: 0x0202, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
614
642
|
description: "Start FRC (Perform Forced Recalibration of the CO2 Sensor)",
|
|
643
|
+
access: "STATE_SET",
|
|
615
644
|
}),
|
|
616
645
|
m.binary({
|
|
617
646
|
name: "factory_reset_co2",
|
|
@@ -620,6 +649,7 @@ exports.definitions = [
|
|
|
620
649
|
cluster: "msCO2",
|
|
621
650
|
attribute: { ID: 0x0206, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
622
651
|
description: "Factory Reset CO2 sensor",
|
|
652
|
+
access: "STATE_SET",
|
|
623
653
|
}),
|
|
624
654
|
m.numeric({
|
|
625
655
|
name: "manual_forced_recalibration",
|
|
@@ -629,6 +659,7 @@ exports.definitions = [
|
|
|
629
659
|
cluster: "msCO2",
|
|
630
660
|
attribute: { ID: 0x0207, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
631
661
|
description: "Start Manual FRC (Perform Forced Recalibration of the CO2 Sensor)",
|
|
662
|
+
access: "STATE_SET",
|
|
632
663
|
}),
|
|
633
664
|
m.binary({
|
|
634
665
|
name: "enable_gas",
|
|
@@ -637,6 +668,7 @@ exports.definitions = [
|
|
|
637
668
|
cluster: "msCO2",
|
|
638
669
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
639
670
|
description: "Enable CO2 Gas Control",
|
|
671
|
+
access: "STATE_SET",
|
|
640
672
|
}),
|
|
641
673
|
m.binary({
|
|
642
674
|
name: "invert_logic_gas",
|
|
@@ -645,6 +677,7 @@ exports.definitions = [
|
|
|
645
677
|
cluster: "msCO2",
|
|
646
678
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
647
679
|
description: "Enable invert logic CO2 Gas Control",
|
|
680
|
+
access: "STATE_SET",
|
|
648
681
|
}),
|
|
649
682
|
m.numeric({
|
|
650
683
|
name: "high_gas",
|
|
@@ -654,6 +687,7 @@ exports.definitions = [
|
|
|
654
687
|
cluster: "msCO2",
|
|
655
688
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
656
689
|
description: "Setting High CO2 Gas Border",
|
|
690
|
+
access: "STATE_SET",
|
|
657
691
|
}),
|
|
658
692
|
m.numeric({
|
|
659
693
|
name: "low_gas",
|
|
@@ -663,6 +697,7 @@ exports.definitions = [
|
|
|
663
697
|
cluster: "msCO2",
|
|
664
698
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
665
699
|
description: "Setting Low CO2 Gas Border",
|
|
700
|
+
access: "STATE_SET",
|
|
666
701
|
}),
|
|
667
702
|
],
|
|
668
703
|
},
|
|
@@ -672,9 +707,18 @@ exports.definitions = [
|
|
|
672
707
|
vendor: "EFEKTA",
|
|
673
708
|
description: "EFEKTA CO2 Smart Monitor, rgb indicator, can control the relay, binding",
|
|
674
709
|
extend: [
|
|
675
|
-
m.co2({
|
|
676
|
-
|
|
677
|
-
|
|
710
|
+
m.co2({
|
|
711
|
+
reporting: co2Reporting,
|
|
712
|
+
access: "STATE",
|
|
713
|
+
}),
|
|
714
|
+
m.temperature({
|
|
715
|
+
reporting: fourReporting,
|
|
716
|
+
access: "STATE",
|
|
717
|
+
}),
|
|
718
|
+
m.humidity({
|
|
719
|
+
reporting: fourReporting,
|
|
720
|
+
access: "STATE",
|
|
721
|
+
}),
|
|
678
722
|
m.numeric({
|
|
679
723
|
name: "reading_interval",
|
|
680
724
|
unit: "seconds",
|
|
@@ -683,6 +727,7 @@ exports.definitions = [
|
|
|
683
727
|
cluster: "msCO2",
|
|
684
728
|
attribute: { ID: 0x0201, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
685
729
|
description: "Setting the sensor reading interval.",
|
|
730
|
+
access: "STATE_SET",
|
|
686
731
|
}),
|
|
687
732
|
m.binary({
|
|
688
733
|
name: "light_indicator",
|
|
@@ -691,6 +736,7 @@ exports.definitions = [
|
|
|
691
736
|
cluster: "msCO2",
|
|
692
737
|
attribute: { ID: 0x0211, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
693
738
|
description: "Enable or Disable light indicator",
|
|
739
|
+
access: "STATE_SET",
|
|
694
740
|
}),
|
|
695
741
|
m.numeric({
|
|
696
742
|
name: "light_indicator_level",
|
|
@@ -700,6 +746,7 @@ exports.definitions = [
|
|
|
700
746
|
cluster: "msCO2",
|
|
701
747
|
attribute: { ID: 0x0209, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
702
748
|
description: "Light indicator level",
|
|
749
|
+
access: "STATE_SET",
|
|
703
750
|
}),
|
|
704
751
|
m.numeric({
|
|
705
752
|
name: "set_altitude",
|
|
@@ -709,6 +756,7 @@ exports.definitions = [
|
|
|
709
756
|
cluster: "msCO2",
|
|
710
757
|
attribute: { ID: 0x0205, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
711
758
|
description: "Setting the altitude above sea level (for high accuracy of the CO2 sensor)",
|
|
759
|
+
access: "STATE_SET",
|
|
712
760
|
}),
|
|
713
761
|
m.numeric({
|
|
714
762
|
name: "temperature_offset",
|
|
@@ -720,6 +768,7 @@ exports.definitions = [
|
|
|
720
768
|
cluster: "msTemperatureMeasurement",
|
|
721
769
|
attribute: { ID: 0x0410, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
722
770
|
description: "Adjust temperature",
|
|
771
|
+
access: "STATE_SET",
|
|
723
772
|
}),
|
|
724
773
|
m.numeric({
|
|
725
774
|
name: "humidity_offset",
|
|
@@ -730,6 +779,7 @@ exports.definitions = [
|
|
|
730
779
|
cluster: "msRelativeHumidity",
|
|
731
780
|
attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
732
781
|
description: "Adjust humidity",
|
|
782
|
+
access: "STATE_SET",
|
|
733
783
|
}),
|
|
734
784
|
m.binary({
|
|
735
785
|
name: "automatic_calibrations",
|
|
@@ -738,6 +788,7 @@ exports.definitions = [
|
|
|
738
788
|
cluster: "msCO2",
|
|
739
789
|
attribute: { ID: 0x0402, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
740
790
|
description: "Automatic calibration of the CO2 sensor",
|
|
791
|
+
access: "STATE_SET",
|
|
741
792
|
}),
|
|
742
793
|
m.binary({
|
|
743
794
|
name: "forced_recalibration",
|
|
@@ -746,6 +797,7 @@ exports.definitions = [
|
|
|
746
797
|
cluster: "msCO2",
|
|
747
798
|
attribute: { ID: 0x0202, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
748
799
|
description: "Start FRC (Perform Forced Recalibration of the CO2 Sensor)",
|
|
800
|
+
access: "STATE_SET",
|
|
749
801
|
}),
|
|
750
802
|
m.binary({
|
|
751
803
|
name: "factory_reset_co2",
|
|
@@ -754,6 +806,7 @@ exports.definitions = [
|
|
|
754
806
|
cluster: "msCO2",
|
|
755
807
|
attribute: { ID: 0x0206, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
756
808
|
description: "Factory Reset CO2 sensor",
|
|
809
|
+
access: "STATE_SET",
|
|
757
810
|
}),
|
|
758
811
|
m.numeric({
|
|
759
812
|
name: "manual_forced_recalibration",
|
|
@@ -763,6 +816,7 @@ exports.definitions = [
|
|
|
763
816
|
cluster: "msCO2",
|
|
764
817
|
attribute: { ID: 0x0207, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
765
818
|
description: "Start Manual FRC (Perform Forced Recalibration of the CO2 Sensor)",
|
|
819
|
+
access: "STATE_SET",
|
|
766
820
|
}),
|
|
767
821
|
m.binary({
|
|
768
822
|
name: "enable_gas",
|
|
@@ -771,6 +825,7 @@ exports.definitions = [
|
|
|
771
825
|
cluster: "msCO2",
|
|
772
826
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
773
827
|
description: "Enable CO2 Gas Control",
|
|
828
|
+
access: "STATE_SET",
|
|
774
829
|
}),
|
|
775
830
|
m.binary({
|
|
776
831
|
name: "invert_logic_gas",
|
|
@@ -779,6 +834,7 @@ exports.definitions = [
|
|
|
779
834
|
cluster: "msCO2",
|
|
780
835
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
781
836
|
description: "Enable invert logic CO2 Gas Control",
|
|
837
|
+
access: "STATE_SET",
|
|
782
838
|
}),
|
|
783
839
|
m.numeric({
|
|
784
840
|
name: "high_gas",
|
|
@@ -788,6 +844,7 @@ exports.definitions = [
|
|
|
788
844
|
cluster: "msCO2",
|
|
789
845
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
790
846
|
description: "Setting High CO2 Gas Border",
|
|
847
|
+
access: "STATE_SET",
|
|
791
848
|
}),
|
|
792
849
|
m.numeric({
|
|
793
850
|
name: "low_gas",
|
|
@@ -797,6 +854,7 @@ exports.definitions = [
|
|
|
797
854
|
cluster: "msCO2",
|
|
798
855
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
799
856
|
description: "Setting Low CO2 Gas Border",
|
|
857
|
+
access: "STATE_SET",
|
|
800
858
|
}),
|
|
801
859
|
],
|
|
802
860
|
},
|
|
@@ -806,9 +864,18 @@ exports.definitions = [
|
|
|
806
864
|
vendor: "EFEKTA",
|
|
807
865
|
description: "EFEKTA CO2 & VOC Index Smart Monitor, rgb indicator, can control the relay, binding",
|
|
808
866
|
extend: [
|
|
809
|
-
m.co2({
|
|
810
|
-
|
|
811
|
-
|
|
867
|
+
m.co2({
|
|
868
|
+
reporting: co2Reporting,
|
|
869
|
+
access: "STATE",
|
|
870
|
+
}),
|
|
871
|
+
m.temperature({
|
|
872
|
+
reporting: fourReporting,
|
|
873
|
+
access: "STATE",
|
|
874
|
+
}),
|
|
875
|
+
m.humidity({
|
|
876
|
+
reporting: fourReporting,
|
|
877
|
+
access: "STATE",
|
|
878
|
+
}),
|
|
812
879
|
m.numeric({
|
|
813
880
|
name: "voc_index",
|
|
814
881
|
unit: "VOC Index points",
|
|
@@ -826,6 +893,7 @@ exports.definitions = [
|
|
|
826
893
|
cluster: "msCO2",
|
|
827
894
|
attribute: { ID: 0x0201, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
828
895
|
description: "Setting the sensor reading interval.",
|
|
896
|
+
access: "STATE_SET",
|
|
829
897
|
}),
|
|
830
898
|
m.binary({
|
|
831
899
|
name: "light_indicator",
|
|
@@ -834,6 +902,7 @@ exports.definitions = [
|
|
|
834
902
|
cluster: "msCO2",
|
|
835
903
|
attribute: { ID: 0x0211, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
836
904
|
description: "Enable or Disable light indicator",
|
|
905
|
+
access: "STATE_SET",
|
|
837
906
|
}),
|
|
838
907
|
m.numeric({
|
|
839
908
|
name: "light_indicator_level",
|
|
@@ -843,6 +912,7 @@ exports.definitions = [
|
|
|
843
912
|
cluster: "msCO2",
|
|
844
913
|
attribute: { ID: 0x0209, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
845
914
|
description: "Light indicator level",
|
|
915
|
+
access: "STATE_SET",
|
|
846
916
|
}),
|
|
847
917
|
m.numeric({
|
|
848
918
|
name: "set_altitude",
|
|
@@ -852,6 +922,7 @@ exports.definitions = [
|
|
|
852
922
|
cluster: "msCO2",
|
|
853
923
|
attribute: { ID: 0x0205, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
854
924
|
description: "Setting the altitude above sea level (for high accuracy of the CO2 sensor)",
|
|
925
|
+
access: "STATE_SET",
|
|
855
926
|
}),
|
|
856
927
|
m.numeric({
|
|
857
928
|
name: "temperature_offset",
|
|
@@ -863,6 +934,7 @@ exports.definitions = [
|
|
|
863
934
|
cluster: "msTemperatureMeasurement",
|
|
864
935
|
attribute: { ID: 0x0410, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
865
936
|
description: "Adjust temperature",
|
|
937
|
+
access: "STATE_SET",
|
|
866
938
|
}),
|
|
867
939
|
m.numeric({
|
|
868
940
|
name: "humidity_offset",
|
|
@@ -873,6 +945,7 @@ exports.definitions = [
|
|
|
873
945
|
cluster: "msRelativeHumidity",
|
|
874
946
|
attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
875
947
|
description: "Adjust humidity",
|
|
948
|
+
access: "STATE_SET",
|
|
876
949
|
}),
|
|
877
950
|
m.binary({
|
|
878
951
|
name: "automatic_calibrations",
|
|
@@ -881,6 +954,7 @@ exports.definitions = [
|
|
|
881
954
|
cluster: "msCO2",
|
|
882
955
|
attribute: { ID: 0x0402, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
883
956
|
description: "Automatic calibration of the CO2 sensor",
|
|
957
|
+
access: "STATE_SET",
|
|
884
958
|
}),
|
|
885
959
|
m.binary({
|
|
886
960
|
name: "forced_recalibration",
|
|
@@ -889,6 +963,7 @@ exports.definitions = [
|
|
|
889
963
|
cluster: "msCO2",
|
|
890
964
|
attribute: { ID: 0x0202, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
891
965
|
description: "Start FRC (Perform Forced Recalibration of the CO2 Sensor)",
|
|
966
|
+
access: "STATE_SET",
|
|
892
967
|
}),
|
|
893
968
|
m.binary({
|
|
894
969
|
name: "factory_reset_co2",
|
|
@@ -897,6 +972,7 @@ exports.definitions = [
|
|
|
897
972
|
cluster: "msCO2",
|
|
898
973
|
attribute: { ID: 0x0206, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
899
974
|
description: "Factory Reset CO2 sensor",
|
|
975
|
+
access: "STATE_SET",
|
|
900
976
|
}),
|
|
901
977
|
m.numeric({
|
|
902
978
|
name: "manual_forced_recalibration",
|
|
@@ -906,6 +982,7 @@ exports.definitions = [
|
|
|
906
982
|
cluster: "msCO2",
|
|
907
983
|
attribute: { ID: 0x0207, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
908
984
|
description: "Start Manual FRC (Perform Forced Recalibration of the CO2 Sensor)",
|
|
985
|
+
access: "STATE_SET",
|
|
909
986
|
}),
|
|
910
987
|
m.binary({
|
|
911
988
|
name: "enable_co2_gas",
|
|
@@ -914,6 +991,7 @@ exports.definitions = [
|
|
|
914
991
|
cluster: "msCO2",
|
|
915
992
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
916
993
|
description: "Enable CO2 Gas Control",
|
|
994
|
+
access: "STATE_SET",
|
|
917
995
|
}),
|
|
918
996
|
m.binary({
|
|
919
997
|
name: "invert_logic_co2_gas",
|
|
@@ -922,6 +1000,7 @@ exports.definitions = [
|
|
|
922
1000
|
cluster: "msCO2",
|
|
923
1001
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
924
1002
|
description: "Enable invert logic CO2 Gas Control",
|
|
1003
|
+
access: "STATE_SET",
|
|
925
1004
|
}),
|
|
926
1005
|
m.numeric({
|
|
927
1006
|
name: "high_co2_gas",
|
|
@@ -931,6 +1010,7 @@ exports.definitions = [
|
|
|
931
1010
|
cluster: "msCO2",
|
|
932
1011
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
933
1012
|
description: "Setting High CO2 Gas Border",
|
|
1013
|
+
access: "STATE_SET",
|
|
934
1014
|
}),
|
|
935
1015
|
m.numeric({
|
|
936
1016
|
name: "low_co2_gas",
|
|
@@ -940,6 +1020,7 @@ exports.definitions = [
|
|
|
940
1020
|
cluster: "msCO2",
|
|
941
1021
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
942
1022
|
description: "Setting Low CO2 Gas Border",
|
|
1023
|
+
access: "STATE_SET",
|
|
943
1024
|
}),
|
|
944
1025
|
m.binary({
|
|
945
1026
|
name: "enable_voc",
|
|
@@ -948,6 +1029,7 @@ exports.definitions = [
|
|
|
948
1029
|
cluster: "genAnalogInput",
|
|
949
1030
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
950
1031
|
description: "Enable VOC Control",
|
|
1032
|
+
access: "STATE_SET",
|
|
951
1033
|
}),
|
|
952
1034
|
m.binary({
|
|
953
1035
|
name: "invert_logic_voc",
|
|
@@ -956,6 +1038,7 @@ exports.definitions = [
|
|
|
956
1038
|
cluster: "genAnalogInput",
|
|
957
1039
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
958
1040
|
description: "Enable invert logic VOC Control",
|
|
1041
|
+
access: "STATE_SET",
|
|
959
1042
|
}),
|
|
960
1043
|
m.numeric({
|
|
961
1044
|
name: "high_voc",
|
|
@@ -965,6 +1048,7 @@ exports.definitions = [
|
|
|
965
1048
|
cluster: "genAnalogInput",
|
|
966
1049
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
967
1050
|
description: "Setting High VOC Border",
|
|
1051
|
+
access: "STATE_SET",
|
|
968
1052
|
}),
|
|
969
1053
|
m.numeric({
|
|
970
1054
|
name: "low_voc",
|
|
@@ -974,6 +1058,7 @@ exports.definitions = [
|
|
|
974
1058
|
cluster: "genAnalogInput",
|
|
975
1059
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
976
1060
|
description: "Setting Low VOC Border",
|
|
1061
|
+
access: "STATE_SET",
|
|
977
1062
|
}),
|
|
978
1063
|
],
|
|
979
1064
|
},
|
|
@@ -1620,6 +1705,7 @@ exports.definitions = [
|
|
|
1620
1705
|
cluster: "genPowerCfg",
|
|
1621
1706
|
attribute: { ID: 0x0201, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
|
|
1622
1707
|
description: "Setting the sensor reading interval in seconds, by default 15 seconds",
|
|
1708
|
+
access: "STATE_SET",
|
|
1623
1709
|
}),
|
|
1624
1710
|
m.enumLookup({
|
|
1625
1711
|
name: "tx_radio_power",
|
|
@@ -1636,6 +1722,7 @@ exports.definitions = [
|
|
|
1636
1722
|
cluster: "genPowerCfg",
|
|
1637
1723
|
attribute: { ID: 0x0216, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1638
1724
|
description: "Enable Smart Sleep, short wakeup every 2-7 seconds",
|
|
1725
|
+
access: "STATE_SET",
|
|
1639
1726
|
}),
|
|
1640
1727
|
],
|
|
1641
1728
|
},
|
|
@@ -1645,6 +1732,7 @@ exports.definitions = [
|
|
|
1645
1732
|
vendor: "EFEKTA",
|
|
1646
1733
|
description: "Temperature sensors with a signal amplifier. External DS18b20 sensor. Simple Thermostat.",
|
|
1647
1734
|
extend: [
|
|
1735
|
+
m.identify(),
|
|
1648
1736
|
m.temperature({
|
|
1649
1737
|
reporting: fourReporting,
|
|
1650
1738
|
access: "STATE",
|
|
@@ -1689,7 +1777,7 @@ exports.definitions = [
|
|
|
1689
1777
|
name: "uptime",
|
|
1690
1778
|
unit: "Hours",
|
|
1691
1779
|
cluster: "genTime",
|
|
1692
|
-
attribute: "
|
|
1780
|
+
attribute: "StandartTime",
|
|
1693
1781
|
description: "Uptime",
|
|
1694
1782
|
scale: 3600,
|
|
1695
1783
|
precision: 1,
|
|
@@ -1728,6 +1816,7 @@ exports.definitions = [
|
|
|
1728
1816
|
cluster: "msTemperatureMeasurement",
|
|
1729
1817
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1730
1818
|
description: "Enable Temperature Control",
|
|
1819
|
+
access: "STATE_SET",
|
|
1731
1820
|
}),
|
|
1732
1821
|
m.binary({
|
|
1733
1822
|
name: "invert_logic_temperature",
|
|
@@ -1736,6 +1825,7 @@ exports.definitions = [
|
|
|
1736
1825
|
cluster: "msTemperatureMeasurement",
|
|
1737
1826
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1738
1827
|
description: "Invert Logic Temperature Control",
|
|
1828
|
+
access: "STATE_SET",
|
|
1739
1829
|
}),
|
|
1740
1830
|
m.numeric({
|
|
1741
1831
|
name: "high_temperature",
|
|
@@ -1745,6 +1835,7 @@ exports.definitions = [
|
|
|
1745
1835
|
cluster: "msTemperatureMeasurement",
|
|
1746
1836
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
1747
1837
|
description: "Setting High Temperature Border",
|
|
1838
|
+
access: "STATE_SET",
|
|
1748
1839
|
}),
|
|
1749
1840
|
m.numeric({
|
|
1750
1841
|
name: "low_temperature",
|
|
@@ -1754,6 +1845,7 @@ exports.definitions = [
|
|
|
1754
1845
|
cluster: "msTemperatureMeasurement",
|
|
1755
1846
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
1756
1847
|
description: "Setting Low Temperature Border",
|
|
1848
|
+
access: "STATE_SET",
|
|
1757
1849
|
}),
|
|
1758
1850
|
],
|
|
1759
1851
|
},
|
|
@@ -1763,6 +1855,7 @@ exports.definitions = [
|
|
|
1763
1855
|
vendor: "EFEKTA",
|
|
1764
1856
|
description: "Temperature sensors. External DS18b20 sensor. Simple Thermostat.",
|
|
1765
1857
|
extend: [
|
|
1858
|
+
m.identify(),
|
|
1766
1859
|
m.temperature({
|
|
1767
1860
|
reporting: fourReporting,
|
|
1768
1861
|
access: "STATE",
|
|
@@ -1799,7 +1892,7 @@ exports.definitions = [
|
|
|
1799
1892
|
name: "uptime",
|
|
1800
1893
|
unit: "Hours",
|
|
1801
1894
|
cluster: "genTime",
|
|
1802
|
-
attribute: "
|
|
1895
|
+
attribute: "StandartTime",
|
|
1803
1896
|
description: "Uptime",
|
|
1804
1897
|
scale: 3600,
|
|
1805
1898
|
precision: 1,
|
|
@@ -1838,6 +1931,7 @@ exports.definitions = [
|
|
|
1838
1931
|
cluster: "msTemperatureMeasurement",
|
|
1839
1932
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1840
1933
|
description: "Enable Temperature Control",
|
|
1934
|
+
access: "STATE_SET",
|
|
1841
1935
|
}),
|
|
1842
1936
|
m.binary({
|
|
1843
1937
|
name: "invert_logic_temperature",
|
|
@@ -1846,6 +1940,7 @@ exports.definitions = [
|
|
|
1846
1940
|
cluster: "msTemperatureMeasurement",
|
|
1847
1941
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1848
1942
|
description: "Invert Logic Temperature Control",
|
|
1943
|
+
access: "STATE_SET",
|
|
1849
1944
|
}),
|
|
1850
1945
|
m.numeric({
|
|
1851
1946
|
name: "high_temperature",
|
|
@@ -1855,6 +1950,7 @@ exports.definitions = [
|
|
|
1855
1950
|
cluster: "msTemperatureMeasurement",
|
|
1856
1951
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
1857
1952
|
description: "Setting High Temperature Border",
|
|
1953
|
+
access: "STATE_SET",
|
|
1858
1954
|
}),
|
|
1859
1955
|
m.numeric({
|
|
1860
1956
|
name: "low_temperature",
|
|
@@ -1864,6 +1960,7 @@ exports.definitions = [
|
|
|
1864
1960
|
cluster: "msTemperatureMeasurement",
|
|
1865
1961
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
1866
1962
|
description: "Setting Low Temperature Border",
|
|
1963
|
+
access: "STATE_SET",
|
|
1867
1964
|
}),
|
|
1868
1965
|
],
|
|
1869
1966
|
},
|
|
@@ -1873,6 +1970,7 @@ exports.definitions = [
|
|
|
1873
1970
|
vendor: "EFEKTA",
|
|
1874
1971
|
description: "Temperature and humidity sensors with a signal amplifier. Simple Thermostat.",
|
|
1875
1972
|
extend: [
|
|
1973
|
+
m.identify(),
|
|
1876
1974
|
m.temperature({
|
|
1877
1975
|
reporting: fourReporting,
|
|
1878
1976
|
access: "STATE",
|
|
@@ -1921,7 +2019,7 @@ exports.definitions = [
|
|
|
1921
2019
|
name: "uptime",
|
|
1922
2020
|
unit: "Hours",
|
|
1923
2021
|
cluster: "genTime",
|
|
1924
|
-
attribute: "
|
|
2022
|
+
attribute: "StandartTime",
|
|
1925
2023
|
description: "Uptime",
|
|
1926
2024
|
scale: 3600,
|
|
1927
2025
|
precision: 1,
|
|
@@ -1952,6 +2050,7 @@ exports.definitions = [
|
|
|
1952
2050
|
cluster: "msTemperatureMeasurement",
|
|
1953
2051
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1954
2052
|
description: "Enable Temperature Control",
|
|
2053
|
+
access: "STATE_SET",
|
|
1955
2054
|
}),
|
|
1956
2055
|
m.binary({
|
|
1957
2056
|
name: "invert_logic_temperature",
|
|
@@ -1960,6 +2059,7 @@ exports.definitions = [
|
|
|
1960
2059
|
cluster: "msTemperatureMeasurement",
|
|
1961
2060
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1962
2061
|
description: "Invert Logic Temperature Control",
|
|
2062
|
+
access: "STATE_SET",
|
|
1963
2063
|
}),
|
|
1964
2064
|
m.numeric({
|
|
1965
2065
|
name: "high_temperature",
|
|
@@ -1969,6 +2069,7 @@ exports.definitions = [
|
|
|
1969
2069
|
cluster: "msTemperatureMeasurement",
|
|
1970
2070
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
1971
2071
|
description: "Setting High Temperature Border",
|
|
2072
|
+
access: "STATE_SET",
|
|
1972
2073
|
}),
|
|
1973
2074
|
m.numeric({
|
|
1974
2075
|
name: "low_temperature",
|
|
@@ -1978,6 +2079,7 @@ exports.definitions = [
|
|
|
1978
2079
|
cluster: "msTemperatureMeasurement",
|
|
1979
2080
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
1980
2081
|
description: "Setting Low Temperature Border",
|
|
2082
|
+
access: "STATE_SET",
|
|
1981
2083
|
}),
|
|
1982
2084
|
m.binary({
|
|
1983
2085
|
name: "enable_humidity",
|
|
@@ -1986,6 +2088,7 @@ exports.definitions = [
|
|
|
1986
2088
|
cluster: "msRelativeHumidity",
|
|
1987
2089
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1988
2090
|
description: "Enable Humidity Control",
|
|
2091
|
+
access: "STATE_SET",
|
|
1989
2092
|
}),
|
|
1990
2093
|
m.binary({
|
|
1991
2094
|
name: "invert_logic_humidity",
|
|
@@ -1994,6 +2097,7 @@ exports.definitions = [
|
|
|
1994
2097
|
cluster: "msRelativeHumidity",
|
|
1995
2098
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
1996
2099
|
description: "Invert Logic Humidity Control",
|
|
2100
|
+
access: "STATE_SET",
|
|
1997
2101
|
}),
|
|
1998
2102
|
m.numeric({
|
|
1999
2103
|
name: "high_humidity",
|
|
@@ -2003,6 +2107,7 @@ exports.definitions = [
|
|
|
2003
2107
|
cluster: "msRelativeHumidity",
|
|
2004
2108
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2005
2109
|
description: "Setting High Humidity Border",
|
|
2110
|
+
access: "STATE_SET",
|
|
2006
2111
|
}),
|
|
2007
2112
|
m.numeric({
|
|
2008
2113
|
name: "low_humidity",
|
|
@@ -2012,6 +2117,7 @@ exports.definitions = [
|
|
|
2012
2117
|
cluster: "msRelativeHumidity",
|
|
2013
2118
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2014
2119
|
description: "Setting Low Humidity Border",
|
|
2120
|
+
access: "STATE_SET",
|
|
2015
2121
|
}),
|
|
2016
2122
|
],
|
|
2017
2123
|
},
|
|
@@ -2021,6 +2127,7 @@ exports.definitions = [
|
|
|
2021
2127
|
vendor: "EFEKTA",
|
|
2022
2128
|
description: "Temperature and humidity sensors. Simple Thermostat.",
|
|
2023
2129
|
extend: [
|
|
2130
|
+
m.identify(),
|
|
2024
2131
|
m.temperature({
|
|
2025
2132
|
reporting: fourReporting,
|
|
2026
2133
|
access: "STATE",
|
|
@@ -2061,7 +2168,7 @@ exports.definitions = [
|
|
|
2061
2168
|
name: "uptime",
|
|
2062
2169
|
unit: "Hours",
|
|
2063
2170
|
cluster: "genTime",
|
|
2064
|
-
attribute: "
|
|
2171
|
+
attribute: "StandartTime",
|
|
2065
2172
|
description: "Uptime",
|
|
2066
2173
|
scale: 3600,
|
|
2067
2174
|
precision: 1,
|
|
@@ -2092,6 +2199,7 @@ exports.definitions = [
|
|
|
2092
2199
|
cluster: "msTemperatureMeasurement",
|
|
2093
2200
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2094
2201
|
description: "Enable Temperature Control",
|
|
2202
|
+
access: "STATE_SET",
|
|
2095
2203
|
}),
|
|
2096
2204
|
m.binary({
|
|
2097
2205
|
name: "invert_logic_temperature",
|
|
@@ -2100,6 +2208,7 @@ exports.definitions = [
|
|
|
2100
2208
|
cluster: "msTemperatureMeasurement",
|
|
2101
2209
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2102
2210
|
description: "Invert Logic Temperature Control",
|
|
2211
|
+
access: "STATE_SET",
|
|
2103
2212
|
}),
|
|
2104
2213
|
m.numeric({
|
|
2105
2214
|
name: "high_temperature",
|
|
@@ -2109,6 +2218,7 @@ exports.definitions = [
|
|
|
2109
2218
|
cluster: "msTemperatureMeasurement",
|
|
2110
2219
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2111
2220
|
description: "Setting High Temperature Border",
|
|
2221
|
+
access: "STATE_SET",
|
|
2112
2222
|
}),
|
|
2113
2223
|
m.numeric({
|
|
2114
2224
|
name: "low_temperature",
|
|
@@ -2118,6 +2228,7 @@ exports.definitions = [
|
|
|
2118
2228
|
cluster: "msTemperatureMeasurement",
|
|
2119
2229
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2120
2230
|
description: "Setting Low Temperature Border",
|
|
2231
|
+
access: "STATE_SET",
|
|
2121
2232
|
}),
|
|
2122
2233
|
m.binary({
|
|
2123
2234
|
name: "enable_humidity",
|
|
@@ -2126,6 +2237,7 @@ exports.definitions = [
|
|
|
2126
2237
|
cluster: "msRelativeHumidity",
|
|
2127
2238
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2128
2239
|
description: "Enable Humidity Control",
|
|
2240
|
+
access: "STATE_SET",
|
|
2129
2241
|
}),
|
|
2130
2242
|
m.binary({
|
|
2131
2243
|
name: "invert_logic_humidity",
|
|
@@ -2134,6 +2246,7 @@ exports.definitions = [
|
|
|
2134
2246
|
cluster: "msRelativeHumidity",
|
|
2135
2247
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2136
2248
|
description: "Invert Logic Humidity Control",
|
|
2249
|
+
access: "STATE_SET",
|
|
2137
2250
|
}),
|
|
2138
2251
|
m.numeric({
|
|
2139
2252
|
name: "high_humidity",
|
|
@@ -2143,6 +2256,7 @@ exports.definitions = [
|
|
|
2143
2256
|
cluster: "msRelativeHumidity",
|
|
2144
2257
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2145
2258
|
description: "Setting High Humidity Border",
|
|
2259
|
+
access: "STATE_SET",
|
|
2146
2260
|
}),
|
|
2147
2261
|
m.numeric({
|
|
2148
2262
|
name: "low_humidity",
|
|
@@ -2152,6 +2266,7 @@ exports.definitions = [
|
|
|
2152
2266
|
cluster: "msRelativeHumidity",
|
|
2153
2267
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2154
2268
|
description: "Setting Low Humidity Border",
|
|
2269
|
+
access: "STATE_SET",
|
|
2155
2270
|
}),
|
|
2156
2271
|
],
|
|
2157
2272
|
},
|
|
@@ -2161,6 +2276,7 @@ exports.definitions = [
|
|
|
2161
2276
|
vendor: "EFEKTA",
|
|
2162
2277
|
description: "Temperature and humidity sensors with a signal amplifier. Simple Thermostat.",
|
|
2163
2278
|
extend: [
|
|
2279
|
+
m.identify(),
|
|
2164
2280
|
m.temperature({
|
|
2165
2281
|
reporting: fourReporting,
|
|
2166
2282
|
access: "STATE",
|
|
@@ -2209,7 +2325,7 @@ exports.definitions = [
|
|
|
2209
2325
|
name: "uptime",
|
|
2210
2326
|
unit: "Hours",
|
|
2211
2327
|
cluster: "genTime",
|
|
2212
|
-
attribute: "
|
|
2328
|
+
attribute: "StandartTime",
|
|
2213
2329
|
description: "Uptime",
|
|
2214
2330
|
scale: 3600,
|
|
2215
2331
|
precision: 1,
|
|
@@ -2240,6 +2356,7 @@ exports.definitions = [
|
|
|
2240
2356
|
cluster: "msTemperatureMeasurement",
|
|
2241
2357
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2242
2358
|
description: "Enable Temperature Control",
|
|
2359
|
+
access: "STATE_SET",
|
|
2243
2360
|
}),
|
|
2244
2361
|
m.binary({
|
|
2245
2362
|
name: "invert_logic_temperature",
|
|
@@ -2248,6 +2365,7 @@ exports.definitions = [
|
|
|
2248
2365
|
cluster: "msTemperatureMeasurement",
|
|
2249
2366
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2250
2367
|
description: "Invert Logic Temperature Control",
|
|
2368
|
+
access: "STATE_SET",
|
|
2251
2369
|
}),
|
|
2252
2370
|
m.numeric({
|
|
2253
2371
|
name: "high_temperature",
|
|
@@ -2257,6 +2375,7 @@ exports.definitions = [
|
|
|
2257
2375
|
cluster: "msTemperatureMeasurement",
|
|
2258
2376
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2259
2377
|
description: "Setting High Temperature Border",
|
|
2378
|
+
access: "STATE_SET",
|
|
2260
2379
|
}),
|
|
2261
2380
|
m.numeric({
|
|
2262
2381
|
name: "low_temperature",
|
|
@@ -2266,6 +2385,7 @@ exports.definitions = [
|
|
|
2266
2385
|
cluster: "msTemperatureMeasurement",
|
|
2267
2386
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2268
2387
|
description: "Setting Low Temperature Border",
|
|
2388
|
+
access: "STATE_SET",
|
|
2269
2389
|
}),
|
|
2270
2390
|
m.binary({
|
|
2271
2391
|
name: "enable_humidity",
|
|
@@ -2274,6 +2394,7 @@ exports.definitions = [
|
|
|
2274
2394
|
cluster: "msRelativeHumidity",
|
|
2275
2395
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2276
2396
|
description: "Enable Humidity Control",
|
|
2397
|
+
access: "STATE_SET",
|
|
2277
2398
|
}),
|
|
2278
2399
|
m.binary({
|
|
2279
2400
|
name: "invert_logic_humidity",
|
|
@@ -2282,6 +2403,7 @@ exports.definitions = [
|
|
|
2282
2403
|
cluster: "msRelativeHumidity",
|
|
2283
2404
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2284
2405
|
description: "Invert Logic Humidity Control",
|
|
2406
|
+
access: "STATE_SET",
|
|
2285
2407
|
}),
|
|
2286
2408
|
m.numeric({
|
|
2287
2409
|
name: "high_humidity",
|
|
@@ -2291,6 +2413,7 @@ exports.definitions = [
|
|
|
2291
2413
|
cluster: "msRelativeHumidity",
|
|
2292
2414
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2293
2415
|
description: "Setting High Humidity Border",
|
|
2416
|
+
access: "STATE_SET",
|
|
2294
2417
|
}),
|
|
2295
2418
|
m.numeric({
|
|
2296
2419
|
name: "low_humidity",
|
|
@@ -2300,6 +2423,7 @@ exports.definitions = [
|
|
|
2300
2423
|
cluster: "msRelativeHumidity",
|
|
2301
2424
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2302
2425
|
description: "Setting Low Humidity Border",
|
|
2426
|
+
access: "STATE_SET",
|
|
2303
2427
|
}),
|
|
2304
2428
|
],
|
|
2305
2429
|
},
|
|
@@ -2309,6 +2433,7 @@ exports.definitions = [
|
|
|
2309
2433
|
vendor: "EFEKTA",
|
|
2310
2434
|
description: "Temperature and humidity sensors. Simple Thermostat.",
|
|
2311
2435
|
extend: [
|
|
2436
|
+
m.identify(),
|
|
2312
2437
|
m.temperature({
|
|
2313
2438
|
reporting: fourReporting,
|
|
2314
2439
|
access: "STATE",
|
|
@@ -2349,7 +2474,7 @@ exports.definitions = [
|
|
|
2349
2474
|
name: "uptime",
|
|
2350
2475
|
unit: "Hours",
|
|
2351
2476
|
cluster: "genTime",
|
|
2352
|
-
attribute: "
|
|
2477
|
+
attribute: "StandartTime",
|
|
2353
2478
|
description: "Uptime",
|
|
2354
2479
|
scale: 3600,
|
|
2355
2480
|
precision: 1,
|
|
@@ -2380,6 +2505,7 @@ exports.definitions = [
|
|
|
2380
2505
|
cluster: "msTemperatureMeasurement",
|
|
2381
2506
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2382
2507
|
description: "Enable Temperature Control",
|
|
2508
|
+
access: "STATE_SET",
|
|
2383
2509
|
}),
|
|
2384
2510
|
m.binary({
|
|
2385
2511
|
name: "invert_logic_temperature",
|
|
@@ -2388,6 +2514,7 @@ exports.definitions = [
|
|
|
2388
2514
|
cluster: "msTemperatureMeasurement",
|
|
2389
2515
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2390
2516
|
description: "Invert Logic Temperature Control",
|
|
2517
|
+
access: "STATE_SET",
|
|
2391
2518
|
}),
|
|
2392
2519
|
m.numeric({
|
|
2393
2520
|
name: "high_temperature",
|
|
@@ -2397,6 +2524,7 @@ exports.definitions = [
|
|
|
2397
2524
|
cluster: "msTemperatureMeasurement",
|
|
2398
2525
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2399
2526
|
description: "Setting High Temperature Border",
|
|
2527
|
+
access: "STATE_SET",
|
|
2400
2528
|
}),
|
|
2401
2529
|
m.numeric({
|
|
2402
2530
|
name: "low_temperature",
|
|
@@ -2406,6 +2534,7 @@ exports.definitions = [
|
|
|
2406
2534
|
cluster: "msTemperatureMeasurement",
|
|
2407
2535
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2408
2536
|
description: "Setting Low Temperature Border",
|
|
2537
|
+
access: "STATE_SET",
|
|
2409
2538
|
}),
|
|
2410
2539
|
m.binary({
|
|
2411
2540
|
name: "enable_humidity",
|
|
@@ -2414,6 +2543,7 @@ exports.definitions = [
|
|
|
2414
2543
|
cluster: "msRelativeHumidity",
|
|
2415
2544
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2416
2545
|
description: "Enable Humidity Control",
|
|
2546
|
+
access: "STATE_SET",
|
|
2417
2547
|
}),
|
|
2418
2548
|
m.binary({
|
|
2419
2549
|
name: "invert_logic_humidity",
|
|
@@ -2422,6 +2552,7 @@ exports.definitions = [
|
|
|
2422
2552
|
cluster: "msRelativeHumidity",
|
|
2423
2553
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2424
2554
|
description: "Invert Logic Humidity Control",
|
|
2555
|
+
access: "STATE_SET",
|
|
2425
2556
|
}),
|
|
2426
2557
|
m.numeric({
|
|
2427
2558
|
name: "high_humidity",
|
|
@@ -2431,6 +2562,7 @@ exports.definitions = [
|
|
|
2431
2562
|
cluster: "msRelativeHumidity",
|
|
2432
2563
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2433
2564
|
description: "Setting High Humidity Border",
|
|
2565
|
+
access: "STATE_SET",
|
|
2434
2566
|
}),
|
|
2435
2567
|
m.numeric({
|
|
2436
2568
|
name: "low_humidity",
|
|
@@ -2440,6 +2572,7 @@ exports.definitions = [
|
|
|
2440
2572
|
cluster: "msRelativeHumidity",
|
|
2441
2573
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2442
2574
|
description: "Setting Low Humidity Border",
|
|
2575
|
+
access: "STATE_SET",
|
|
2443
2576
|
}),
|
|
2444
2577
|
],
|
|
2445
2578
|
},
|
|
@@ -2454,21 +2587,25 @@ exports.definitions = [
|
|
|
2454
2587
|
endpointNames: ["1"],
|
|
2455
2588
|
description: "Measured value of the built-in temperature sensor",
|
|
2456
2589
|
reporting: fourReporting,
|
|
2590
|
+
access: "STATE",
|
|
2457
2591
|
}),
|
|
2458
2592
|
m.temperature({
|
|
2459
2593
|
endpointNames: ["2"],
|
|
2460
2594
|
description: "Measured value of the external temperature sensor",
|
|
2461
2595
|
reporting: fourReporting,
|
|
2596
|
+
access: "STATE",
|
|
2462
2597
|
}),
|
|
2463
2598
|
m.humidity({
|
|
2464
2599
|
endpointNames: ["1"],
|
|
2465
2600
|
description: "Measured value of the built-in humidity sensor",
|
|
2466
2601
|
reporting: fourReporting,
|
|
2602
|
+
access: "STATE",
|
|
2467
2603
|
}),
|
|
2468
2604
|
m.humidity({
|
|
2469
2605
|
endpointNames: ["2"],
|
|
2470
2606
|
description: "Measured value of the external humidity sensor",
|
|
2471
2607
|
reporting: fourReporting,
|
|
2608
|
+
access: "STATE",
|
|
2472
2609
|
}),
|
|
2473
2610
|
m.battery({
|
|
2474
2611
|
percentage: true,
|
|
@@ -2510,7 +2647,7 @@ exports.definitions = [
|
|
|
2510
2647
|
name: "uptime",
|
|
2511
2648
|
unit: "Hours",
|
|
2512
2649
|
cluster: "genTime",
|
|
2513
|
-
attribute: "
|
|
2650
|
+
attribute: "StandartTime",
|
|
2514
2651
|
description: "Uptime",
|
|
2515
2652
|
scale: 3600,
|
|
2516
2653
|
precision: 1,
|
|
@@ -2541,6 +2678,7 @@ exports.definitions = [
|
|
|
2541
2678
|
cluster: "msTemperatureMeasurement",
|
|
2542
2679
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2543
2680
|
description: "Enable Temperature Control",
|
|
2681
|
+
access: "STATE_SET",
|
|
2544
2682
|
}),
|
|
2545
2683
|
m.binary({
|
|
2546
2684
|
name: "switching_temperature_sensor",
|
|
@@ -2549,6 +2687,7 @@ exports.definitions = [
|
|
|
2549
2687
|
cluster: "msTemperatureMeasurement",
|
|
2550
2688
|
attribute: { ID: 0x0229, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2551
2689
|
description: "Enable internal or external sensor control",
|
|
2690
|
+
access: "STATE_SET",
|
|
2552
2691
|
}),
|
|
2553
2692
|
m.binary({
|
|
2554
2693
|
name: "invert_logic_temperature",
|
|
@@ -2557,6 +2696,7 @@ exports.definitions = [
|
|
|
2557
2696
|
cluster: "msTemperatureMeasurement",
|
|
2558
2697
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2559
2698
|
description: "Invert Logic Temperature Control",
|
|
2699
|
+
access: "STATE_SET",
|
|
2560
2700
|
}),
|
|
2561
2701
|
m.numeric({
|
|
2562
2702
|
name: "high_temperature",
|
|
@@ -2566,6 +2706,7 @@ exports.definitions = [
|
|
|
2566
2706
|
cluster: "msTemperatureMeasurement",
|
|
2567
2707
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2568
2708
|
description: "Setting High Temperature Border",
|
|
2709
|
+
access: "STATE_SET",
|
|
2569
2710
|
}),
|
|
2570
2711
|
m.numeric({
|
|
2571
2712
|
name: "low_temperature",
|
|
@@ -2575,6 +2716,7 @@ exports.definitions = [
|
|
|
2575
2716
|
cluster: "msTemperatureMeasurement",
|
|
2576
2717
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2577
2718
|
description: "Setting Low Temperature Border",
|
|
2719
|
+
access: "STATE_SET",
|
|
2578
2720
|
}),
|
|
2579
2721
|
m.binary({
|
|
2580
2722
|
name: "enable_humidity",
|
|
@@ -2583,6 +2725,7 @@ exports.definitions = [
|
|
|
2583
2725
|
cluster: "msRelativeHumidity",
|
|
2584
2726
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2585
2727
|
description: "Enable Humidity Control",
|
|
2728
|
+
access: "STATE_SET",
|
|
2586
2729
|
}),
|
|
2587
2730
|
m.binary({
|
|
2588
2731
|
name: "switching_humidity_sensor",
|
|
@@ -2591,6 +2734,7 @@ exports.definitions = [
|
|
|
2591
2734
|
cluster: "msRelativeHumidity",
|
|
2592
2735
|
attribute: { ID: 0x0229, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2593
2736
|
description: "Enable internal or external sensor control",
|
|
2737
|
+
access: "STATE_SET",
|
|
2594
2738
|
}),
|
|
2595
2739
|
m.binary({
|
|
2596
2740
|
name: "invert_logic_humidity",
|
|
@@ -2599,6 +2743,7 @@ exports.definitions = [
|
|
|
2599
2743
|
cluster: "msRelativeHumidity",
|
|
2600
2744
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2601
2745
|
description: "Invert Logic Humidity Control",
|
|
2746
|
+
access: "STATE_SET",
|
|
2602
2747
|
}),
|
|
2603
2748
|
m.numeric({
|
|
2604
2749
|
name: "high_humidity",
|
|
@@ -2608,6 +2753,7 @@ exports.definitions = [
|
|
|
2608
2753
|
cluster: "msRelativeHumidity",
|
|
2609
2754
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2610
2755
|
description: "Setting High Humidity Border",
|
|
2756
|
+
access: "STATE_SET",
|
|
2611
2757
|
}),
|
|
2612
2758
|
m.numeric({
|
|
2613
2759
|
name: "low_humidity",
|
|
@@ -2617,6 +2763,7 @@ exports.definitions = [
|
|
|
2617
2763
|
cluster: "msRelativeHumidity",
|
|
2618
2764
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2619
2765
|
description: "Setting Low Humidity Border",
|
|
2766
|
+
access: "STATE_SET",
|
|
2620
2767
|
}),
|
|
2621
2768
|
],
|
|
2622
2769
|
},
|
|
@@ -2631,21 +2778,25 @@ exports.definitions = [
|
|
|
2631
2778
|
endpointNames: ["1"],
|
|
2632
2779
|
description: "Measured value of the built-in temperature sensor",
|
|
2633
2780
|
reporting: fourReporting,
|
|
2781
|
+
access: "STATE",
|
|
2634
2782
|
}),
|
|
2635
2783
|
m.temperature({
|
|
2636
2784
|
endpointNames: ["2"],
|
|
2637
2785
|
description: "Measured value of the external temperature sensor",
|
|
2638
2786
|
reporting: fourReporting,
|
|
2787
|
+
access: "STATE",
|
|
2639
2788
|
}),
|
|
2640
2789
|
m.humidity({
|
|
2641
2790
|
endpointNames: ["1"],
|
|
2642
2791
|
description: "Measured value of the built-in humidity sensor",
|
|
2643
2792
|
reporting: fourReporting,
|
|
2793
|
+
access: "STATE",
|
|
2644
2794
|
}),
|
|
2645
2795
|
m.humidity({
|
|
2646
2796
|
endpointNames: ["2"],
|
|
2647
2797
|
description: "Measured value of the external humidity sensor",
|
|
2648
2798
|
reporting: fourReporting,
|
|
2799
|
+
access: "STATE",
|
|
2649
2800
|
}),
|
|
2650
2801
|
m.battery({
|
|
2651
2802
|
percentage: true,
|
|
@@ -2679,7 +2830,7 @@ exports.definitions = [
|
|
|
2679
2830
|
name: "uptime",
|
|
2680
2831
|
unit: "Hours",
|
|
2681
2832
|
cluster: "genTime",
|
|
2682
|
-
attribute: "
|
|
2833
|
+
attribute: "StandartTime",
|
|
2683
2834
|
description: "Uptime",
|
|
2684
2835
|
scale: 3600,
|
|
2685
2836
|
precision: 1,
|
|
@@ -2710,6 +2861,7 @@ exports.definitions = [
|
|
|
2710
2861
|
cluster: "msTemperatureMeasurement",
|
|
2711
2862
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2712
2863
|
description: "Enable Temperature Control",
|
|
2864
|
+
access: "STATE_SET",
|
|
2713
2865
|
}),
|
|
2714
2866
|
m.binary({
|
|
2715
2867
|
name: "switching_temperature_sensor",
|
|
@@ -2718,6 +2870,7 @@ exports.definitions = [
|
|
|
2718
2870
|
cluster: "msTemperatureMeasurement",
|
|
2719
2871
|
attribute: { ID: 0x0229, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2720
2872
|
description: "Enable internal or external sensor control",
|
|
2873
|
+
access: "STATE_SET",
|
|
2721
2874
|
}),
|
|
2722
2875
|
m.binary({
|
|
2723
2876
|
name: "invert_logic_temperature",
|
|
@@ -2726,6 +2879,7 @@ exports.definitions = [
|
|
|
2726
2879
|
cluster: "msTemperatureMeasurement",
|
|
2727
2880
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2728
2881
|
description: "Invert Logic Temperature Control",
|
|
2882
|
+
access: "STATE_SET",
|
|
2729
2883
|
}),
|
|
2730
2884
|
m.numeric({
|
|
2731
2885
|
name: "high_temperature",
|
|
@@ -2735,6 +2889,7 @@ exports.definitions = [
|
|
|
2735
2889
|
cluster: "msTemperatureMeasurement",
|
|
2736
2890
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2737
2891
|
description: "Setting High Temperature Border",
|
|
2892
|
+
access: "STATE_SET",
|
|
2738
2893
|
}),
|
|
2739
2894
|
m.numeric({
|
|
2740
2895
|
name: "low_temperature",
|
|
@@ -2744,6 +2899,7 @@ exports.definitions = [
|
|
|
2744
2899
|
cluster: "msTemperatureMeasurement",
|
|
2745
2900
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2746
2901
|
description: "Setting Low Temperature Border",
|
|
2902
|
+
access: "STATE_SET",
|
|
2747
2903
|
}),
|
|
2748
2904
|
m.binary({
|
|
2749
2905
|
name: "enable_humidity",
|
|
@@ -2752,6 +2908,7 @@ exports.definitions = [
|
|
|
2752
2908
|
cluster: "msRelativeHumidity",
|
|
2753
2909
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2754
2910
|
description: "Enable Humidity Control",
|
|
2911
|
+
access: "STATE_SET",
|
|
2755
2912
|
}),
|
|
2756
2913
|
m.binary({
|
|
2757
2914
|
name: "switching_humidity_sensor",
|
|
@@ -2760,6 +2917,7 @@ exports.definitions = [
|
|
|
2760
2917
|
cluster: "msRelativeHumidity",
|
|
2761
2918
|
attribute: { ID: 0x0229, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2762
2919
|
description: "Enable internal or external sensor control",
|
|
2920
|
+
access: "STATE_SET",
|
|
2763
2921
|
}),
|
|
2764
2922
|
m.binary({
|
|
2765
2923
|
name: "invert_logic_humidity",
|
|
@@ -2768,6 +2926,7 @@ exports.definitions = [
|
|
|
2768
2926
|
cluster: "msRelativeHumidity",
|
|
2769
2927
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
2770
2928
|
description: "Invert Logic Humidity Control",
|
|
2929
|
+
access: "STATE_SET",
|
|
2771
2930
|
}),
|
|
2772
2931
|
m.numeric({
|
|
2773
2932
|
name: "high_humidity",
|
|
@@ -2777,6 +2936,7 @@ exports.definitions = [
|
|
|
2777
2936
|
cluster: "msRelativeHumidity",
|
|
2778
2937
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2779
2938
|
description: "Setting High Humidity Border",
|
|
2939
|
+
access: "STATE_SET",
|
|
2780
2940
|
}),
|
|
2781
2941
|
m.numeric({
|
|
2782
2942
|
name: "low_humidity",
|
|
@@ -2786,6 +2946,7 @@ exports.definitions = [
|
|
|
2786
2946
|
cluster: "msRelativeHumidity",
|
|
2787
2947
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
2788
2948
|
description: "Setting Low Humidity Border",
|
|
2949
|
+
access: "STATE_SET",
|
|
2789
2950
|
}),
|
|
2790
2951
|
],
|
|
2791
2952
|
},
|
|
@@ -5471,6 +5632,7 @@ exports.definitions = [
|
|
|
5471
5632
|
cluster: "msTemperatureMeasurement",
|
|
5472
5633
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
5473
5634
|
description: "Enable Temperature Control",
|
|
5635
|
+
access: "STATE_SET",
|
|
5474
5636
|
}),
|
|
5475
5637
|
m.binary({
|
|
5476
5638
|
name: "invert_logic_temperature",
|
|
@@ -5479,6 +5641,7 @@ exports.definitions = [
|
|
|
5479
5641
|
cluster: "msTemperatureMeasurement",
|
|
5480
5642
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
5481
5643
|
description: "Invert Logic Temperature Control",
|
|
5644
|
+
access: "STATE_SET",
|
|
5482
5645
|
}),
|
|
5483
5646
|
m.enumLookup({
|
|
5484
5647
|
name: "invert",
|
|
@@ -5496,6 +5659,7 @@ exports.definitions = [
|
|
|
5496
5659
|
cluster: "msTemperatureMeasurement",
|
|
5497
5660
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
5498
5661
|
description: "Setting High Temperature Border",
|
|
5662
|
+
access: "STATE_SET",
|
|
5499
5663
|
}),
|
|
5500
5664
|
m.numeric({
|
|
5501
5665
|
name: "low_temperature",
|
|
@@ -5505,6 +5669,7 @@ exports.definitions = [
|
|
|
5505
5669
|
cluster: "msTemperatureMeasurement",
|
|
5506
5670
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
5507
5671
|
description: "Setting Low Temperature Border",
|
|
5672
|
+
access: "STATE_SET",
|
|
5508
5673
|
}),
|
|
5509
5674
|
m.binary({
|
|
5510
5675
|
name: "enable_humidity",
|
|
@@ -5513,6 +5678,7 @@ exports.definitions = [
|
|
|
5513
5678
|
cluster: "msRelativeHumidity",
|
|
5514
5679
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
5515
5680
|
description: "Enable Humidity Control",
|
|
5681
|
+
access: "STATE_SET",
|
|
5516
5682
|
}),
|
|
5517
5683
|
m.binary({
|
|
5518
5684
|
name: "invert_logic_humidity",
|
|
@@ -5521,6 +5687,7 @@ exports.definitions = [
|
|
|
5521
5687
|
cluster: "msRelativeHumidity",
|
|
5522
5688
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
5523
5689
|
description: "Invert Logic Humidity Control",
|
|
5690
|
+
access: "STATE_SET",
|
|
5524
5691
|
}),
|
|
5525
5692
|
m.numeric({
|
|
5526
5693
|
name: "high_humidity",
|
|
@@ -5530,6 +5697,7 @@ exports.definitions = [
|
|
|
5530
5697
|
cluster: "msRelativeHumidity",
|
|
5531
5698
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
5532
5699
|
description: "Setting High Humidity Border",
|
|
5700
|
+
access: "STATE_SET",
|
|
5533
5701
|
}),
|
|
5534
5702
|
m.numeric({
|
|
5535
5703
|
name: "low_humidity",
|
|
@@ -5539,6 +5707,7 @@ exports.definitions = [
|
|
|
5539
5707
|
cluster: "msRelativeHumidity",
|
|
5540
5708
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
5541
5709
|
description: "Setting Low Humidity Border",
|
|
5710
|
+
access: "STATE_SET",
|
|
5542
5711
|
}),
|
|
5543
5712
|
],
|
|
5544
5713
|
},
|
|
@@ -5600,6 +5769,7 @@ exports.definitions = [
|
|
|
5600
5769
|
cluster: "msTemperatureMeasurement",
|
|
5601
5770
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
5602
5771
|
description: "Enable Temperature Control",
|
|
5772
|
+
access: "STATE_SET",
|
|
5603
5773
|
}),
|
|
5604
5774
|
m.binary({
|
|
5605
5775
|
name: "invert_logic_temperature",
|
|
@@ -5608,6 +5778,7 @@ exports.definitions = [
|
|
|
5608
5778
|
cluster: "msTemperatureMeasurement",
|
|
5609
5779
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
5610
5780
|
description: "Invert Logic Temperature Control",
|
|
5781
|
+
access: "STATE_SET",
|
|
5611
5782
|
}),
|
|
5612
5783
|
m.enumLookup({
|
|
5613
5784
|
name: "invert",
|
|
@@ -5625,6 +5796,7 @@ exports.definitions = [
|
|
|
5625
5796
|
cluster: "msTemperatureMeasurement",
|
|
5626
5797
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
5627
5798
|
description: "Setting High Temperature Border",
|
|
5799
|
+
access: "STATE_SET",
|
|
5628
5800
|
}),
|
|
5629
5801
|
m.numeric({
|
|
5630
5802
|
name: "low_temperature",
|
|
@@ -5634,6 +5806,7 @@ exports.definitions = [
|
|
|
5634
5806
|
cluster: "msTemperatureMeasurement",
|
|
5635
5807
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
5636
5808
|
description: "Setting Low Temperature Border",
|
|
5809
|
+
access: "STATE_SET",
|
|
5637
5810
|
}),
|
|
5638
5811
|
m.binary({
|
|
5639
5812
|
name: "enable_humidity",
|
|
@@ -5642,6 +5815,7 @@ exports.definitions = [
|
|
|
5642
5815
|
cluster: "msRelativeHumidity",
|
|
5643
5816
|
attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
5644
5817
|
description: "Enable Humidity Control",
|
|
5818
|
+
access: "STATE_SET",
|
|
5645
5819
|
}),
|
|
5646
5820
|
m.binary({
|
|
5647
5821
|
name: "invert_logic_humidity",
|
|
@@ -5650,6 +5824,7 @@ exports.definitions = [
|
|
|
5650
5824
|
cluster: "msRelativeHumidity",
|
|
5651
5825
|
attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
|
|
5652
5826
|
description: "Invert Logic Humidity Control",
|
|
5827
|
+
access: "STATE_SET",
|
|
5653
5828
|
}),
|
|
5654
5829
|
m.numeric({
|
|
5655
5830
|
name: "high_humidity",
|
|
@@ -5659,6 +5834,7 @@ exports.definitions = [
|
|
|
5659
5834
|
cluster: "msRelativeHumidity",
|
|
5660
5835
|
attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
5661
5836
|
description: "Setting High Humidity Border",
|
|
5837
|
+
access: "STATE_SET",
|
|
5662
5838
|
}),
|
|
5663
5839
|
m.numeric({
|
|
5664
5840
|
name: "low_humidity",
|
|
@@ -5668,6 +5844,7 @@ exports.definitions = [
|
|
|
5668
5844
|
cluster: "msRelativeHumidity",
|
|
5669
5845
|
attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
|
|
5670
5846
|
description: "Setting Low Humidity Border",
|
|
5847
|
+
access: "STATE_SET",
|
|
5671
5848
|
}),
|
|
5672
5849
|
],
|
|
5673
5850
|
},
|