zigbee-herdsman-converters 23.15.0 → 23.17.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,35 @@
1
1
  # Changelog
2
2
 
3
+ ## [23.17.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.16.0...v23.17.0) (2025-03-31)
4
+
5
+
6
+ ### Features
7
+
8
+ * Tuya TS110E_1gang_2: expose countdown https://github.com/Koenkk/zigbee2mqtt/issues/26791 ([c37e999](https://github.com/Koenkk/zigbee-herdsman-converters/commit/c37e999e75254ca44e64dd35ee8cfaabd2a776be))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Paulmann 501.34: fix action values [#9075](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9075) ([#9099](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9099)) ([8eb7016](https://github.com/Koenkk/zigbee-herdsman-converters/commit/8eb7016652da620ddafd1ffcf646c6a2d0cd2b6d))
14
+ * Philips Hue Wall Switch 929003017102: re-add brightness actions ([#9098](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9098)) ([b41b7c6](https://github.com/Koenkk/zigbee-herdsman-converters/commit/b41b7c62e9d7e430d61c20718d9a018ec63db334))
15
+
16
+ ## [23.16.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.15.0...v23.16.0) (2025-03-30)
17
+
18
+
19
+ ### Features
20
+
21
+ * **add:** 929003056801 ([#9094](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9094)) ([d595176](https://github.com/Koenkk/zigbee-herdsman-converters/commit/d595176ef74771625bc7a9098414a30a35346dc4))
22
+ * **add:** EFEKTA_Pixel_Open_Air_II ([#9096](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9096)) ([4ef31b0](https://github.com/Koenkk/zigbee-herdsman-converters/commit/4ef31b0e139a269ec38b3b2412e4fb3949bc2ec4))
23
+ * **add:** SR-ZG9101CS ([#9080](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9080)) ([8894142](https://github.com/Koenkk/zigbee-herdsman-converters/commit/8894142a83bedafe65eebac1fb4498922ccaa869))
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * **detect:** Detect `_TZE200_clrdrnya` as Tuya MTG235-ZB-RL https://github.com/Koenkk/zigbee2mqtt/discussions/25712 ([3976c8d](https://github.com/Koenkk/zigbee-herdsman-converters/commit/3976c8db0c3ce5e76b11d8f8e628a61156957a06))
29
+ * **ignore:** update dependencies ([#9093](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9093)) ([2e048d0](https://github.com/Koenkk/zigbee-herdsman-converters/commit/2e048d0d4207a7b5c2854292e8a23247d34b08b3))
30
+ * Schneider S520567: expose tilt ([#9095](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9095)) ([23074f1](https://github.com/Koenkk/zigbee-herdsman-converters/commit/23074f17702c7154187ac351a9af84405efe2e89))
31
+ * Tuya TYZGTH1CH-D1RF: auto settings ([#9091](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9091)) ([3cd11cc](https://github.com/Koenkk/zigbee-herdsman-converters/commit/3cd11cce570a92db10ed34533df27905230661a6))
32
+
3
33
  ## [23.15.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.14.0...v23.15.0) (2025-03-28)
4
34
 
5
35
 
@@ -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,EA60L7C,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,EAwnM7C,CAAC"}
@@ -6015,5 +6015,304 @@ exports.definitions = [
6015
6015
  }),
6016
6016
  ],
6017
6017
  },
6018
+ {
6019
+ zigbeeModel: ["EFEKTA_Pixel_Open_Air_II"],
6020
+ model: "EFEKTA_Pixel_Open_Air_II",
6021
+ vendor: "EFEKTA",
6022
+ description: "CO2 Monitor with retro LCD Display, V2",
6023
+ extend: [
6024
+ m.identify(),
6025
+ m.co2({
6026
+ reporting: co2Reporting,
6027
+ access: "STATE",
6028
+ }),
6029
+ m.temperature({
6030
+ reporting: fourReporting,
6031
+ access: "STATE",
6032
+ }),
6033
+ m.humidity({
6034
+ reporting: fourReporting,
6035
+ access: "STATE",
6036
+ }),
6037
+ m.binary({
6038
+ name: "backlight",
6039
+ valueOn: ["ON", 1],
6040
+ valueOff: ["OFF", 0],
6041
+ cluster: "msCO2",
6042
+ attribute: { ID: 0x0211, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6043
+ description: "Backlight of the Display",
6044
+ access: "STATE_SET",
6045
+ }),
6046
+ m.binary({
6047
+ name: "night_onoff_backlight",
6048
+ valueOn: ["ON", 1],
6049
+ valueOff: ["OFF", 0],
6050
+ cluster: "msCO2",
6051
+ attribute: { ID: 0x0401, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6052
+ description: "Enable Night Mode",
6053
+ access: "STATE_SET",
6054
+ }),
6055
+ m.numeric({
6056
+ name: "night_on_backlight",
6057
+ unit: "Hr",
6058
+ valueMin: 0,
6059
+ valueMax: 23,
6060
+ cluster: "msCO2",
6061
+ attribute: { ID: 0x0405, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
6062
+ description: "Night Mode activation time",
6063
+ access: "STATE_SET",
6064
+ }),
6065
+ m.numeric({
6066
+ name: "night_off_backlight",
6067
+ unit: "Hr",
6068
+ valueMin: 0,
6069
+ valueMax: 23,
6070
+ cluster: "msCO2",
6071
+ attribute: { ID: 0x0406, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
6072
+ description: "Night mode deactivation time",
6073
+ access: "STATE_SET",
6074
+ }),
6075
+ m.numeric({
6076
+ name: "contrast",
6077
+ valueMin: 0,
6078
+ valueMax: 40,
6079
+ cluster: "msCO2",
6080
+ attribute: { ID: 0x0445, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
6081
+ description: "Display Contrast",
6082
+ access: "STATE_SET",
6083
+ }),
6084
+ m.numeric({
6085
+ name: "temperature_offset",
6086
+ unit: "°C",
6087
+ valueMin: -50,
6088
+ valueMax: 50,
6089
+ valueStep: 0.1,
6090
+ scale: 10,
6091
+ cluster: "msTemperatureMeasurement",
6092
+ attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
6093
+ description: "Adjust temperature",
6094
+ access: "STATE_SET",
6095
+ }),
6096
+ m.numeric({
6097
+ name: "humidity_offset",
6098
+ unit: "%",
6099
+ valueMin: -50,
6100
+ valueMax: 50,
6101
+ valueStep: 1,
6102
+ cluster: "msRelativeHumidity",
6103
+ attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
6104
+ description: "Adjust humidity",
6105
+ access: "STATE_SET",
6106
+ }),
6107
+ m.binary({
6108
+ name: "automatic_calibrations",
6109
+ valueOn: ["ON", 1],
6110
+ valueOff: ["OFF", 0],
6111
+ cluster: "msCO2",
6112
+ attribute: { ID: 0x0402, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6113
+ description: "Automatic calibration of the CO2 sensor",
6114
+ access: "STATE_SET",
6115
+ }),
6116
+ m.numeric({
6117
+ name: "co2_error_read",
6118
+ cluster: "msCO2",
6119
+ attribute: { ID: 0x0444, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
6120
+ description: "CO2 Error Read",
6121
+ access: "STATE",
6122
+ }),
6123
+ m.binary({
6124
+ name: "enable_gas",
6125
+ valueOn: ["ON", 1],
6126
+ valueOff: ["OFF", 0],
6127
+ cluster: "msCO2",
6128
+ attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6129
+ description: "Enable CO2 Gas Control",
6130
+ access: "STATE_SET",
6131
+ }),
6132
+ m.binary({
6133
+ name: "invert_logic_gas",
6134
+ valueOn: ["ON", 1],
6135
+ valueOff: ["OFF", 0],
6136
+ cluster: "msCO2",
6137
+ attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6138
+ description: "Enable invert logic CO2 Gas Control",
6139
+ access: "STATE_SET",
6140
+ }),
6141
+ m.numeric({
6142
+ name: "high_gas",
6143
+ unit: "ppm",
6144
+ valueMin: 400,
6145
+ valueMax: 5000,
6146
+ cluster: "msCO2",
6147
+ attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
6148
+ description: "Setting High CO2 Gas Border",
6149
+ access: "STATE_SET",
6150
+ }),
6151
+ m.numeric({
6152
+ name: "low_gas",
6153
+ unit: "ppm",
6154
+ valueMin: 400,
6155
+ valueMax: 5000,
6156
+ cluster: "msCO2",
6157
+ attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
6158
+ description: "Setting Low CO2 Gas Border",
6159
+ access: "STATE_SET",
6160
+ }),
6161
+ ],
6162
+ },
6163
+ {
6164
+ zigbeeModel: ["EFEKTA_Pixel_Open_Air"],
6165
+ model: "EFEKTA_Pixel_Open_Air",
6166
+ vendor: "EFEKTA",
6167
+ description: "CO2 Monitor with retro LCD Display, V1",
6168
+ extend: [
6169
+ m.identify(),
6170
+ m.co2({
6171
+ reporting: co2Reporting,
6172
+ access: "STATE",
6173
+ }),
6174
+ m.temperature({
6175
+ reporting: fourReporting,
6176
+ access: "STATE",
6177
+ }),
6178
+ m.humidity({
6179
+ reporting: fourReporting,
6180
+ access: "STATE",
6181
+ }),
6182
+ m.binary({
6183
+ name: "backlight",
6184
+ valueOn: ["ON", 1],
6185
+ valueOff: ["OFF", 0],
6186
+ cluster: "msCO2",
6187
+ attribute: { ID: 0x0211, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6188
+ description: "Backlight of the Display",
6189
+ access: "STATE_SET",
6190
+ }),
6191
+ m.binary({
6192
+ name: "night_onoff_backlight",
6193
+ valueOn: ["ON", 1],
6194
+ valueOff: ["OFF", 0],
6195
+ cluster: "msCO2",
6196
+ attribute: { ID: 0x0401, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6197
+ description: "Enable Night Mode",
6198
+ access: "STATE_SET",
6199
+ }),
6200
+ m.numeric({
6201
+ name: "night_on_backlight",
6202
+ unit: "Hr",
6203
+ valueMin: 0,
6204
+ valueMax: 23,
6205
+ cluster: "msCO2",
6206
+ attribute: { ID: 0x0405, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
6207
+ description: "Night Mode activation time",
6208
+ access: "STATE_SET",
6209
+ }),
6210
+ m.numeric({
6211
+ name: "night_off_backlight",
6212
+ unit: "Hr",
6213
+ valueMin: 0,
6214
+ valueMax: 23,
6215
+ cluster: "msCO2",
6216
+ attribute: { ID: 0x0406, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
6217
+ description: "Night mode deactivation time",
6218
+ access: "STATE_SET",
6219
+ }),
6220
+ m.numeric({
6221
+ name: "contrast",
6222
+ valueMin: 0,
6223
+ valueMax: 40,
6224
+ cluster: "msCO2",
6225
+ attribute: { ID: 0x0445, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
6226
+ description: "Display Contrast",
6227
+ access: "STATE_SET",
6228
+ }),
6229
+ m.numeric({
6230
+ name: "temperature_offset",
6231
+ unit: "°C",
6232
+ valueMin: -50,
6233
+ valueMax: 50,
6234
+ valueStep: 0.1,
6235
+ scale: 10,
6236
+ cluster: "msTemperatureMeasurement",
6237
+ attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
6238
+ description: "Adjust temperature",
6239
+ access: "STATE_SET",
6240
+ }),
6241
+ m.numeric({
6242
+ name: "humidity_offset",
6243
+ unit: "%",
6244
+ valueMin: -50,
6245
+ valueMax: 50,
6246
+ valueStep: 1,
6247
+ cluster: "msRelativeHumidity",
6248
+ attribute: { ID: 0x0210, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
6249
+ description: "Adjust humidity",
6250
+ access: "STATE_SET",
6251
+ }),
6252
+ m.binary({
6253
+ name: "automatic_calibrations",
6254
+ valueOn: ["ON", 1],
6255
+ valueOff: ["OFF", 0],
6256
+ cluster: "msCO2",
6257
+ attribute: { ID: 0x0402, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6258
+ description: "Automatic calibration of the CO2 sensor",
6259
+ access: "STATE_SET",
6260
+ }),
6261
+ m.binary({
6262
+ name: "forced_recalibration_on_air",
6263
+ valueOn: ["ON", 1],
6264
+ valueOff: ["OFF", 0],
6265
+ cluster: "msCO2",
6266
+ attribute: { ID: 0x0202, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6267
+ description: "Forced Recalibration of the CO2 Sensor on fresh air",
6268
+ access: "STATE_SET",
6269
+ }),
6270
+ m.numeric({
6271
+ name: "co2_error_read",
6272
+ cluster: "msCO2",
6273
+ attribute: { ID: 0x0444, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
6274
+ description: "CO2 Error Read",
6275
+ access: "STATE",
6276
+ }),
6277
+ m.binary({
6278
+ name: "enable_gas",
6279
+ valueOn: ["ON", 1],
6280
+ valueOff: ["OFF", 0],
6281
+ cluster: "msCO2",
6282
+ attribute: { ID: 0x0220, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6283
+ description: "Enable CO2 Gas Control",
6284
+ access: "STATE_SET",
6285
+ }),
6286
+ m.binary({
6287
+ name: "invert_logic_gas",
6288
+ valueOn: ["ON", 1],
6289
+ valueOff: ["OFF", 0],
6290
+ cluster: "msCO2",
6291
+ attribute: { ID: 0x0225, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
6292
+ description: "Enable invert logic CO2 Gas Control",
6293
+ access: "STATE_SET",
6294
+ }),
6295
+ m.numeric({
6296
+ name: "high_gas",
6297
+ unit: "ppm",
6298
+ valueMin: 400,
6299
+ valueMax: 5000,
6300
+ cluster: "msCO2",
6301
+ attribute: { ID: 0x0221, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
6302
+ description: "Setting High CO2 Gas Border",
6303
+ access: "STATE_SET",
6304
+ }),
6305
+ m.numeric({
6306
+ name: "low_gas",
6307
+ unit: "ppm",
6308
+ valueMin: 400,
6309
+ valueMax: 5000,
6310
+ cluster: "msCO2",
6311
+ attribute: { ID: 0x0222, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
6312
+ description: "Setting Low CO2 Gas Border",
6313
+ access: "STATE_SET",
6314
+ }),
6315
+ ],
6316
+ },
6018
6317
  ];
6019
6318
  //# sourceMappingURL=efekta.js.map