zigbee-herdsman-converters 23.52.0 → 23.53.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,30 @@
1
1
  # Changelog
2
2
 
3
+ ## [23.53.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.52.1...v23.53.0) (2025-06-01)
4
+
5
+
6
+ ### Features
7
+
8
+ * **add:** 929003777201, 929003817101 ([#9441](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9441)) ([9a5cbe6](https://github.com/Koenkk/zigbee-herdsman-converters/commit/9a5cbe6f13a4fb4a4627204485b20387a0ffd1dd))
9
+ * **add:** EFEKTA_TH_POW_R, EFEKTA_T1_MAX_R ([#9439](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9439)) ([89a9fae](https://github.com/Koenkk/zigbee-herdsman-converters/commit/89a9fae109aee3fdc8b397d6d3e78bf820eab76e))
10
+ * **add:** TRV06-AT ([#9437](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9437)) ([b77571d](https://github.com/Koenkk/zigbee-herdsman-converters/commit/b77571d0ce1596725fb08c1f6c5cb2b67e1830c0))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **detect:** Detect `_TZ3000_ruldv5dt` as Tuya ZG-2002-RF ([#9440](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9440)) ([8d9dab6](https://github.com/Koenkk/zigbee-herdsman-converters/commit/8d9dab689a1a8e0c46db50a47844d0ebbacb5d5b))
16
+ * **ignore:** Revert "feat: Hue: add `execute_if_off` for colour lights ([#9426](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9426))" ([#9442](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9442)) ([5703738](https://github.com/Koenkk/zigbee-herdsman-converters/commit/5703738d650971ca17bb9065a1cee9dfdcbb5fb6))
17
+
18
+ ## [23.52.1](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.52.0...v23.52.1) (2025-05-31)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **detect:** Detect `RODRET wireless dimmer` as IKEA E2201 https://github.com/Koenkk/zigbee2mqtt/issues/27491 ([004ee99](https://github.com/Koenkk/zigbee-herdsman-converters/commit/004ee9937410e3839b8927d176f79b607ab8799b))
24
+ * **detect:** Detect SV02-412-MP-1.0 as Keen Home SV02 ([#9433](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9433)) ([03737fc](https://github.com/Koenkk/zigbee-herdsman-converters/commit/03737fc039eb611556ad6018f35cf1f6250114df))
25
+ * **ignore:** bump the minor-patch group with 2 updates ([#9435](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9435)) ([919cbc1](https://github.com/Koenkk/zigbee-herdsman-converters/commit/919cbc10d8e987d97bb4ea92efc8ea68fa5f5906))
26
+ * **ignore:** fix battery reporting not configured https://github.com/Koenkk/zigbee2mqtt/issues/27556 ([acd5f48](https://github.com/Koenkk/zigbee-herdsman-converters/commit/acd5f48ed25aa50af67aac56d9ef22fe1651c348))
27
+
3
28
  ## [23.52.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.51.0...v23.52.0) (2025-05-30)
4
29
 
5
30
 
@@ -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;AAiBvD,eAAO,MAAM,WAAW,EAAE,oBAAoB,EA6tN7C,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;AAiBvD,eAAO,MAAM,WAAW,EAAE,oBAAoB,EA++N7C,CAAC"}
@@ -6927,5 +6927,279 @@ exports.definitions = [
6927
6927
  }),
6928
6928
  ],
6929
6929
  },
6930
+ {
6931
+ zigbeeModel: ["EFEKTA_TH_POW_R"],
6932
+ model: "EFEKTA_TH_POW_R",
6933
+ vendor: "EFEKTA",
6934
+ description: "Temperature and humidity smart monitor with voltage detector",
6935
+ extend: [
6936
+ m.identify(),
6937
+ m.temperature({
6938
+ reporting: fourReporting,
6939
+ access: "STATE",
6940
+ }),
6941
+ m.humidity({
6942
+ reporting: fourReporting,
6943
+ access: "STATE",
6944
+ }),
6945
+ m.numeric({
6946
+ name: "mains_voltage",
6947
+ unit: "V",
6948
+ cluster: "genPowerCfg",
6949
+ attribute: "mainsVoltage",
6950
+ description: "Mains voltage",
6951
+ scale: 10,
6952
+ precision: 1,
6953
+ access: "STATE_GET",
6954
+ }),
6955
+ m.battery({
6956
+ percentage: true,
6957
+ lowStatus: true,
6958
+ voltage: false,
6959
+ percentageReporting: true,
6960
+ percentageReportingConfig: fiveReporting,
6961
+ }),
6962
+ m.numeric({
6963
+ name: "lifetime",
6964
+ unit: "Hours",
6965
+ cluster: "genTime",
6966
+ attribute: "localTime",
6967
+ description: "Uptime",
6968
+ access: "STATE",
6969
+ }),
6970
+ m.numeric({
6971
+ name: "reading_interval",
6972
+ unit: "sec",
6973
+ valueMin: 3,
6974
+ valueMax: 300,
6975
+ cluster: "genPowerCfg",
6976
+ attribute: { ID: 0x0201, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
6977
+ description: "Setting the sensor reading interval in seconds, by default 5 seconds",
6978
+ access: "STATE_SET",
6979
+ }),
6980
+ m.enumLookup({
6981
+ name: "tx_radio_power",
6982
+ lookup: { "4dbm": 4, "19dbm": 19 },
6983
+ cluster: "genPowerCfg",
6984
+ attribute: { ID: 0x0236, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
6985
+ description: "Set TX Radio Power, dbm",
6986
+ access: "STATE_SET",
6987
+ }),
6988
+ m.binary({
6989
+ name: "config_report_enable",
6990
+ valueOn: ["ON", 1],
6991
+ valueOff: ["OFF", 0],
6992
+ cluster: "genPowerCfg",
6993
+ attribute: { ID: 0x0275, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6994
+ description: "Enable reporting based on reporting configuration",
6995
+ access: "STATE_SET",
6996
+ }),
6997
+ m.binary({
6998
+ name: "comparison_previous_data",
6999
+ valueOn: ["ON", 1],
7000
+ valueOff: ["OFF", 0],
7001
+ cluster: "genPowerCfg",
7002
+ attribute: { ID: 0x0205, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7003
+ description: "Enable сontrol of comparison with previous data",
7004
+ access: "STATE_SET",
7005
+ }),
7006
+ m.binary({
7007
+ name: "enable_temperature",
7008
+ valueOn: ["ON", 1],
7009
+ valueOff: ["OFF", 0],
7010
+ cluster: "msTemperatureMeasurement",
7011
+ attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7012
+ description: "Enable Temperature Control",
7013
+ access: "STATE_SET",
7014
+ }),
7015
+ m.binary({
7016
+ name: "invert_logic_temperature",
7017
+ valueOn: ["ON", 1],
7018
+ valueOff: ["OFF", 0],
7019
+ cluster: "msTemperatureMeasurement",
7020
+ attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7021
+ description: "Invert Logic Temperature Control",
7022
+ access: "STATE_SET",
7023
+ }),
7024
+ m.numeric({
7025
+ name: "high_temperature",
7026
+ unit: "°C",
7027
+ valueMin: -40,
7028
+ valueMax: 90,
7029
+ cluster: "msTemperatureMeasurement",
7030
+ attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
7031
+ description: "Setting High Temperature Border",
7032
+ access: "STATE_SET",
7033
+ }),
7034
+ m.numeric({
7035
+ name: "low_temperature",
7036
+ unit: "°C",
7037
+ valueMin: -40,
7038
+ valueMax: 90,
7039
+ cluster: "msTemperatureMeasurement",
7040
+ attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
7041
+ description: "Setting Low Temperature Border",
7042
+ access: "STATE_SET",
7043
+ }),
7044
+ m.binary({
7045
+ name: "enable_humidity",
7046
+ valueOn: ["ON", 1],
7047
+ valueOff: ["OFF", 0],
7048
+ cluster: "msRelativeHumidity",
7049
+ attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7050
+ description: "Enable Humidity Control",
7051
+ access: "STATE_SET",
7052
+ }),
7053
+ m.binary({
7054
+ name: "invert_logic_humidity",
7055
+ valueOn: ["ON", 1],
7056
+ valueOff: ["OFF", 0],
7057
+ cluster: "msRelativeHumidity",
7058
+ attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7059
+ description: "Invert Logic Humidity Control",
7060
+ access: "STATE_SET",
7061
+ }),
7062
+ m.numeric({
7063
+ name: "high_humidity",
7064
+ unit: "%",
7065
+ valueMin: 0,
7066
+ valueMax: 99,
7067
+ cluster: "msRelativeHumidity",
7068
+ attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
7069
+ description: "Setting High Humidity Border",
7070
+ access: "STATE_SET",
7071
+ }),
7072
+ m.numeric({
7073
+ name: "low_humidity",
7074
+ unit: "%",
7075
+ valueMin: 0,
7076
+ valueMax: 99,
7077
+ cluster: "msRelativeHumidity",
7078
+ attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
7079
+ description: "Setting Low Humidity Border",
7080
+ access: "STATE_SET",
7081
+ }),
7082
+ ],
7083
+ },
7084
+ {
7085
+ zigbeeModel: ["EFEKTA_T1_MAX_R"],
7086
+ model: "EFEKTA_T1_MAX_R",
7087
+ vendor: "EFEKTA",
7088
+ description: "Temperatureb mart monitor with voltage detector",
7089
+ extend: [
7090
+ m.identify(),
7091
+ m.temperature({
7092
+ reporting: fourReporting,
7093
+ access: "STATE",
7094
+ }),
7095
+ m.numeric({
7096
+ name: "mains_voltage",
7097
+ unit: "V",
7098
+ cluster: "genPowerCfg",
7099
+ attribute: "mainsVoltage",
7100
+ description: "Mains voltage",
7101
+ scale: 10,
7102
+ precision: 1,
7103
+ access: "STATE_GET",
7104
+ }),
7105
+ m.battery({
7106
+ percentage: true,
7107
+ lowStatus: true,
7108
+ voltage: false,
7109
+ percentageReporting: true,
7110
+ percentageReportingConfig: fiveReporting,
7111
+ }),
7112
+ m.numeric({
7113
+ name: "lifetime",
7114
+ unit: "Hours",
7115
+ cluster: "genTime",
7116
+ attribute: "localTime",
7117
+ description: "Uptime",
7118
+ access: "STATE",
7119
+ }),
7120
+ m.numeric({
7121
+ name: "reading_interval",
7122
+ unit: "sec",
7123
+ valueMin: 3,
7124
+ valueMax: 300,
7125
+ cluster: "genPowerCfg",
7126
+ attribute: { ID: 0x0201, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
7127
+ description: "Setting the sensor reading interval in seconds, by default 5 seconds",
7128
+ access: "STATE_SET",
7129
+ }),
7130
+ m.enumLookup({
7131
+ name: "tx_radio_power",
7132
+ lookup: { "4dbm": 4, "19dbm": 19 },
7133
+ cluster: "genPowerCfg",
7134
+ attribute: { ID: 0x0236, type: zigbee_herdsman_1.Zcl.DataType.INT8 },
7135
+ description: "Set TX Radio Power, dbm",
7136
+ access: "STATE_SET",
7137
+ }),
7138
+ m.enumLookup({
7139
+ name: "resolution",
7140
+ lookup: { "9 bit": 9, "10 bit": 10, "11 bit": 11, "12 bit": 12 },
7141
+ cluster: "msTemperatureMeasurement",
7142
+ attribute: { ID: 0x0520, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
7143
+ description: "Set Bit resolution DS18B20",
7144
+ access: "STATE_SET",
7145
+ }),
7146
+ m.binary({
7147
+ name: "config_report_enable",
7148
+ valueOn: ["ON", 1],
7149
+ valueOff: ["OFF", 0],
7150
+ cluster: "genPowerCfg",
7151
+ attribute: { ID: 0x0275, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7152
+ description: "Enable reporting based on reporting configuration",
7153
+ access: "STATE_SET",
7154
+ }),
7155
+ m.binary({
7156
+ name: "comparison_previous_data",
7157
+ valueOn: ["ON", 1],
7158
+ valueOff: ["OFF", 0],
7159
+ cluster: "genPowerCfg",
7160
+ attribute: { ID: 0x0205, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7161
+ description: "Enable сontrol of comparison with previous data",
7162
+ access: "STATE_SET",
7163
+ }),
7164
+ m.binary({
7165
+ name: "enable_temperature",
7166
+ valueOn: ["ON", 1],
7167
+ valueOff: ["OFF", 0],
7168
+ cluster: "msTemperatureMeasurement",
7169
+ attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7170
+ description: "Enable Temperature Control",
7171
+ access: "STATE_SET",
7172
+ }),
7173
+ m.binary({
7174
+ name: "invert_logic_temperature",
7175
+ valueOn: ["ON", 1],
7176
+ valueOff: ["OFF", 0],
7177
+ cluster: "msTemperatureMeasurement",
7178
+ attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
7179
+ description: "Invert Logic Temperature Control",
7180
+ access: "STATE_SET",
7181
+ }),
7182
+ m.numeric({
7183
+ name: "high_temperature",
7184
+ unit: "°C",
7185
+ valueMin: -40,
7186
+ valueMax: 90,
7187
+ cluster: "msTemperatureMeasurement",
7188
+ attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
7189
+ description: "Setting High Temperature Border",
7190
+ access: "STATE_SET",
7191
+ }),
7192
+ m.numeric({
7193
+ name: "low_temperature",
7194
+ unit: "°C",
7195
+ valueMin: -40,
7196
+ valueMax: 90,
7197
+ cluster: "msTemperatureMeasurement",
7198
+ attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
7199
+ description: "Setting Low Temperature Border",
7200
+ access: "STATE_SET",
7201
+ }),
7202
+ ],
7203
+ },
6930
7204
  ];
6931
7205
  //# sourceMappingURL=efekta.js.map