zigbee-herdsman-converters 23.1.1 → 23.2.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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [23.2.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.1.1...v23.2.0) (2025-03-01)
4
+
5
+
6
+ ### Features
7
+
8
+ * Add "off" backlight to "-G2" Sinope thermostat variants ([#8903](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8903)) ([918d14a](https://github.com/Koenkk/zigbee-herdsman-converters/commit/918d14aa0676f57eb3f05a8b8b7e275958b531dd))
9
+ * **add:** dqhome.re4 ([#8888](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8888)) ([d37fac9](https://github.com/Koenkk/zigbee-herdsman-converters/commit/d37fac908b31a3a353c12a647befec4c255ba75d))
10
+ * **add:** EFEKTA_Smart_AQ_Box_R3 ([#8906](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8906)) ([fb51ace](https://github.com/Koenkk/zigbee-herdsman-converters/commit/fb51ace1b30d6bc238b0ae12603f92cb357a260a))
11
+ * **add:** KD-R01D ([#8896](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8896)) ([0e5475b](https://github.com/Koenkk/zigbee-herdsman-converters/commit/0e5475b8810558f13f19f5f16997d4bf3de1ee95))
12
+ * **add:** POK016 ([#8895](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8895)) ([1b38695](https://github.com/Koenkk/zigbee-herdsman-converters/commit/1b386951a9ccdd3c67418f9f14c962f411df2c8a))
13
+ * **add:** TO-Q-SYS-J2T ([#8899](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8899)) ([5ae8596](https://github.com/Koenkk/zigbee-herdsman-converters/commit/5ae8596936c6214a15f94ed79f6843f42b511aaf))
14
+ * **add:** ZDM150 ([#8860](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8860)) ([94c3458](https://github.com/Koenkk/zigbee-herdsman-converters/commit/94c345865dcda82eb64521e9d66ff343779209a1))
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **detect:** Detect `_TZE200_w6n8jeuu` as Tuya ZTH05Z https://github.com/Koenkk/zigbee2mqtt/issues/23469 ([e2af37e](https://github.com/Koenkk/zigbee-herdsman-converters/commit/e2af37e545940766cedba7c86856f6551337bd2e))
20
+ * **detect:** Detect `_TZE284_chbyv06x` as Tuya TS0601_gas_sensor_2 ([#8900](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8900)) ([3b82d20](https://github.com/Koenkk/zigbee-herdsman-converters/commit/3b82d20a4d0f966734f1fa469dc17bd803b31fbe))
21
+ * **detect:** Detect `SIN-4-UNK` as NodOn SIN-4-RS-20 https://github.com/Koenkk/zigbee2mqtt/issues/26508 ([a9083f3](https://github.com/Koenkk/zigbee-herdsman-converters/commit/a9083f3dc0e2fe4e446fb9da78ab06a23e9c3879))
22
+ * Rename `BHT-002-GCLZB` to `BHT-002` ([#8904](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8904)) ([6cd9c12](https://github.com/Koenkk/zigbee-herdsman-converters/commit/6cd9c121868c4dabf9534e128503111907a969ea))
23
+ * Update `TS0205_smoke_2` description https://github.com/Koenkk/zigbee2mqtt.io/pull/3550 ([c4cd13d](https://github.com/Koenkk/zigbee-herdsman-converters/commit/c4cd13d1982f939b93f359bc0dc5a0ed8bf0b085))
24
+
3
25
  ## [23.1.1](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.1.0...v23.1.1) (2025-02-26)
4
26
 
5
27
 
@@ -0,0 +1,3 @@
1
+ import type { DefinitionWithExtend } from "../lib/types";
2
+ export declare const definitions: DefinitionWithExtend[];
3
+ //# sourceMappingURL=dqsmart.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dqsmart.d.ts","sourceRoot":"","sources":["../../src/devices/dqsmart.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,cAAc,CAAC;AAEvD,eAAO,MAAM,WAAW,EAAE,oBAAoB,EAW7C,CAAC"}
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.definitions = void 0;
4
+ const m = require("zigbee-herdsman-converters/lib/modernExtend");
5
+ exports.definitions = [
6
+ {
7
+ zigbeeModel: ["dqhome.re4"],
8
+ model: "dqhome.re4",
9
+ vendor: "DQHOME",
10
+ description: "DQSmart Switch 4 Gang",
11
+ extend: [
12
+ m.deviceEndpoints({ endpoints: { l1: 1, l2: 2, l3: 3, l4: 4 } }),
13
+ m.onOff({ powerOnBehavior: false, endpointNames: ["l1", "l2", "l3", "l4"] }),
14
+ ],
15
+ },
16
+ ];
17
+ //# sourceMappingURL=dqsmart.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dqsmart.js","sourceRoot":"","sources":["../../src/devices/dqsmart.ts"],"names":[],"mappings":";;;AAAA,MAAM,CAAC,GAAG,OAAO,CAAC,6CAA6C,CAAC,CAAC;AAGpD,QAAA,WAAW,GAA2B;IAC/C;QACI,WAAW,EAAE,CAAC,YAAY,CAAC;QAC3B,KAAK,EAAE,YAAY;QACnB,MAAM,EAAE,QAAQ;QAChB,WAAW,EAAE,uBAAuB;QACpC,MAAM,EAAE;YACJ,CAAC,CAAC,eAAe,CAAC,EAAC,SAAS,EAAE,EAAC,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAC,EAAC,CAAC;YAC5D,CAAC,CAAC,KAAK,CAAC,EAAC,eAAe,EAAE,KAAK,EAAE,aAAa,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,EAAC,CAAC;SAC7E;KACJ;CACJ,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"efekta.d.ts","sourceRoot":"","sources":["../../src/devices/efekta.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,cAAc,CAAC;AAWvD,eAAO,MAAM,WAAW,EAAE,oBAAoB,EA8wF7C,CAAC"}
1
+ {"version":3,"file":"efekta.d.ts","sourceRoot":"","sources":["../../src/devices/efekta.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,cAAc,CAAC;AAavD,eAAO,MAAM,WAAW,EAAE,oBAAoB,EAmjG7C,CAAC"}
@@ -44,6 +44,8 @@ const threeReporting = { min: 30, max: 1800, change: 1 };
44
44
  const fourReporting = { min: 30, max: 1800, change: 10 };
45
45
  const sixReporting = { min: 3600, max: 21600, change: 1 };
46
46
  const co2Reporting = { min: 10, max: 600, change: 0.000001 };
47
+ const pmReporting = { min: 10, max: 600, change: 0.1 };
48
+ const pm2Reporting = { min: 10, max: 600, change: 0.01 };
47
49
  exports.definitions = [
48
50
  {
49
51
  zigbeeModel: ["EFEKTA_iAQ3"],
@@ -2874,5 +2876,298 @@ exports.definitions = [
2874
2876
  }),
2875
2877
  ],
2876
2878
  },
2879
+ {
2880
+ zigbeeModel: ["EFEKTA_Smart_AQ_Box_R3"],
2881
+ model: "EFEKTA_Smart_AQ_Box_R3",
2882
+ vendor: "EFEKTA",
2883
+ description: "EFEKTA Smart Air Quality Box, can control the relay, binding on some other devices",
2884
+ extend: [
2885
+ m.numeric({
2886
+ name: "pm1",
2887
+ unit: "µg/m³",
2888
+ cluster: "pm25Measurement",
2889
+ attribute: { ID: 0x0601, type: zigbee_herdsman_1.Zcl.DataType.SINGLE_PREC },
2890
+ description: "Measured PM1.0 (particulate matter) concentration",
2891
+ access: "STATE",
2892
+ reporting: pmReporting,
2893
+ precision: 1,
2894
+ }),
2895
+ m.pm25({
2896
+ reporting: pmReporting,
2897
+ access: "STATE",
2898
+ description: "Measured PM2.5 (particulate matter) concentration",
2899
+ precision: 1,
2900
+ }),
2901
+ m.numeric({
2902
+ name: "pm4",
2903
+ unit: "µg/m³",
2904
+ cluster: "pm25Measurement",
2905
+ attribute: { ID: 0x0605, type: zigbee_herdsman_1.Zcl.DataType.SINGLE_PREC },
2906
+ description: "Measured PM4.0 (particulate matter) concentration",
2907
+ access: "STATE",
2908
+ reporting: pmReporting,
2909
+ precision: 1,
2910
+ }),
2911
+ m.numeric({
2912
+ name: "pm10",
2913
+ unit: "µg/m³",
2914
+ cluster: "pm25Measurement",
2915
+ attribute: { ID: 0x0602, type: zigbee_herdsman_1.Zcl.DataType.SINGLE_PREC },
2916
+ description: "Measured PM10.0 (particulate matter) concentration",
2917
+ access: "STATE",
2918
+ reporting: pmReporting,
2919
+ precision: 1,
2920
+ }),
2921
+ m.numeric({
2922
+ name: "pm_size",
2923
+ unit: "µm",
2924
+ cluster: "pm25Measurement",
2925
+ attribute: { ID: 0x0603, type: zigbee_herdsman_1.Zcl.DataType.SINGLE_PREC },
2926
+ description: "Typical Particle Size",
2927
+ access: "STATE",
2928
+ reporting: pm2Reporting,
2929
+ precision: 2,
2930
+ }),
2931
+ m.numeric({
2932
+ name: "aqi_25_index",
2933
+ unit: "PM2.5 Index",
2934
+ cluster: "pm25Measurement",
2935
+ attribute: { ID: 0x0604, type: zigbee_herdsman_1.Zcl.DataType.SINGLE_PREC },
2936
+ description: "PM 2.5 INDEX",
2937
+ access: "STATE",
2938
+ reporting: pmReporting,
2939
+ }),
2940
+ m.co2({
2941
+ reporting: co2Reporting,
2942
+ access: "STATE",
2943
+ }),
2944
+ m.numeric({
2945
+ name: "voc_index",
2946
+ unit: "VOC Index points",
2947
+ cluster: "genAnalogInput",
2948
+ attribute: "presentValue",
2949
+ description: "VOC index",
2950
+ access: "STATE",
2951
+ reporting: threeReporting,
2952
+ }),
2953
+ m.pressure({
2954
+ reporting: threeReporting,
2955
+ access: "STATE",
2956
+ }),
2957
+ m.temperature({
2958
+ reporting: fourReporting,
2959
+ access: "STATE",
2960
+ }),
2961
+ m.humidity({
2962
+ reporting: fourReporting,
2963
+ access: "STATE",
2964
+ }),
2965
+ m.numeric({
2966
+ name: "reading_delay",
2967
+ unit: "sec",
2968
+ valueMin: 6,
2969
+ valueMax: 600,
2970
+ cluster: "msCO2",
2971
+ attribute: { ID: 0x0201, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
2972
+ description: "Setting the sensor reading delay.",
2973
+ access: "STATE_SET",
2974
+ }),
2975
+ m.binary({
2976
+ name: "alarm",
2977
+ valueOn: ["ON", 1],
2978
+ valueOff: ["OFF", 0],
2979
+ cluster: "msCO2",
2980
+ attribute: { ID: 0x0240, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
2981
+ description: "Alarm",
2982
+ access: "STATE_SET",
2983
+ }),
2984
+ m.binary({
2985
+ name: "light_indicator",
2986
+ valueOn: ["ON", 1],
2987
+ valueOff: ["OFF", 0],
2988
+ cluster: "msCO2",
2989
+ attribute: { ID: 0x0211, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
2990
+ description: "Enable or Disable light indicator",
2991
+ access: "STATE_SET",
2992
+ }),
2993
+ m.numeric({
2994
+ name: "light_indicator_level",
2995
+ unit: "%",
2996
+ valueMin: 0,
2997
+ valueMax: 100,
2998
+ cluster: "msCO2",
2999
+ attribute: { ID: 0x0209, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
3000
+ description: "Light indicator level",
3001
+ access: "STATE_SET",
3002
+ }),
3003
+ m.numeric({
3004
+ name: "temperature_offset",
3005
+ unit: "°C",
3006
+ valueMin: -50,
3007
+ valueMax: 50,
3008
+ valueStep: 0.1,
3009
+ scale: 10,
3010
+ cluster: "msTemperatureMeasurement",
3011
+ attribute: { ID: 0x0410, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
3012
+ description: "Adjust temperature",
3013
+ access: "STATE_SET",
3014
+ }),
3015
+ m.numeric({
3016
+ name: "humidity_offset",
3017
+ unit: "%",
3018
+ valueMin: -50,
3019
+ valueMax: 50,
3020
+ valueStep: 1,
3021
+ cluster: "msRelativeHumidity",
3022
+ attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
3023
+ description: "Adjust humidity",
3024
+ access: "STATE_SET",
3025
+ }),
3026
+ m.numeric({
3027
+ name: "auto_clean_interval",
3028
+ unit: "day",
3029
+ valueMin: 0,
3030
+ valueMax: 10,
3031
+ valueStep: 1,
3032
+ cluster: "pm25Measurement",
3033
+ attribute: { ID: 0x0330, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
3034
+ description: "Auto clean interval PM2.5 sensor",
3035
+ access: "STATE_SET",
3036
+ }),
3037
+ m.binary({
3038
+ name: "manual_clean",
3039
+ valueOn: ["ON", 1],
3040
+ valueOff: ["OFF", 0],
3041
+ cluster: "pm25Measurement",
3042
+ attribute: { ID: 0x0331, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
3043
+ description: "Manual clean PM2.5 sensor",
3044
+ access: "STATE_SET",
3045
+ }),
3046
+ m.binary({
3047
+ name: "forced_recalibration",
3048
+ valueOn: ["ON", 1],
3049
+ valueOff: ["OFF", 0],
3050
+ cluster: "msCO2",
3051
+ attribute: { ID: 0x0202, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
3052
+ description: "Start FRC (Perform Forced Recalibration of the CO2 Sensor)",
3053
+ access: "STATE_SET",
3054
+ }),
3055
+ m.numeric({
3056
+ name: "manual_forced_recalibration",
3057
+ unit: "ppm",
3058
+ valueMin: 0,
3059
+ valueMax: 5000,
3060
+ cluster: "msCO2",
3061
+ attribute: { ID: 0x0207, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
3062
+ description: "Start Manual FRC (Perform Forced Recalibration of the CO2 Sensor)",
3063
+ access: "STATE_SET",
3064
+ }),
3065
+ m.binary({
3066
+ name: "automatic_self_calibration",
3067
+ valueOn: ["ON", 1],
3068
+ valueOff: ["OFF", 0],
3069
+ cluster: "msCO2",
3070
+ attribute: { ID: 0x0402, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
3071
+ description: "Automatic self calibration",
3072
+ access: "STATE_SET",
3073
+ }),
3074
+ m.binary({
3075
+ name: "factory_reset_co2",
3076
+ valueOn: ["ON", 1],
3077
+ valueOff: ["OFF", 0],
3078
+ cluster: "msCO2",
3079
+ attribute: { ID: 0x0206, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
3080
+ description: "Factory Reset CO2 sensor",
3081
+ access: "STATE_SET",
3082
+ }),
3083
+ m.binary({
3084
+ name: "enable_pm25",
3085
+ valueOn: ["ON", 1],
3086
+ valueOff: ["OFF", 0],
3087
+ cluster: "pm25Measurement",
3088
+ attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
3089
+ description: "Enable PM2.5 Control",
3090
+ access: "STATE_SET",
3091
+ }),
3092
+ m.numeric({
3093
+ name: "high_pm25",
3094
+ unit: "µg/m³",
3095
+ valueMin: 0,
3096
+ valueMax: 1000,
3097
+ cluster: "pm25Measurement",
3098
+ attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
3099
+ description: "Setting High PM2.5 Border",
3100
+ access: "STATE_SET",
3101
+ }),
3102
+ m.numeric({
3103
+ name: "low_pm25",
3104
+ unit: "µg/m³",
3105
+ valueMin: 0,
3106
+ valueMax: 1000,
3107
+ cluster: "pm25Measurement",
3108
+ attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
3109
+ description: "Setting Low PM2.5 Border",
3110
+ access: "STATE_SET",
3111
+ }),
3112
+ m.binary({
3113
+ name: "enable_co2_gas",
3114
+ valueOn: ["ON", 1],
3115
+ valueOff: ["OFF", 0],
3116
+ cluster: "msCO2",
3117
+ attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
3118
+ description: "Enable CO2 Gas Control",
3119
+ access: "STATE_SET",
3120
+ }),
3121
+ m.numeric({
3122
+ name: "high_co2_gas",
3123
+ unit: "ppm",
3124
+ valueMin: 400,
3125
+ valueMax: 5000,
3126
+ cluster: "msCO2",
3127
+ attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
3128
+ description: "Setting High CO2 Gas Border",
3129
+ access: "STATE_SET",
3130
+ }),
3131
+ m.numeric({
3132
+ name: "low_co2_gas",
3133
+ unit: "ppm",
3134
+ valueMin: 400,
3135
+ valueMax: 5000,
3136
+ cluster: "msCO2",
3137
+ attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
3138
+ description: "Setting Low CO2 Gas Border",
3139
+ access: "STATE_SET",
3140
+ }),
3141
+ m.binary({
3142
+ name: "enable_voc",
3143
+ valueOn: ["ON", 1],
3144
+ valueOff: ["OFF", 0],
3145
+ cluster: "genAnalogInput",
3146
+ attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
3147
+ description: "Enable VOC Control",
3148
+ access: "STATE_SET",
3149
+ }),
3150
+ m.numeric({
3151
+ name: "high_voc",
3152
+ unit: "VOC Index points",
3153
+ valueMin: 0,
3154
+ valueMax: 500,
3155
+ cluster: "genAnalogInput",
3156
+ attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
3157
+ description: "Setting High VOC Border",
3158
+ access: "STATE_SET",
3159
+ }),
3160
+ m.numeric({
3161
+ name: "low_voc",
3162
+ unit: "VOC Index points",
3163
+ valueMin: 0,
3164
+ valueMax: 500,
3165
+ cluster: "genAnalogInput",
3166
+ attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
3167
+ description: "Setting Low VOC Border",
3168
+ access: "STATE_SET",
3169
+ }),
3170
+ ],
3171
+ },
2877
3172
  ];
2878
3173
  //# sourceMappingURL=efekta.js.map