zigbee-herdsman-converters 15.111.0 → 15.112.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,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [15.112.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v15.111.0...v15.112.0) (2023-11-09)
4
+
5
+
6
+ ### Features
7
+
8
+ * Add `temperature_display_mode` for LYWSD03MMC ([#6437](https://github.com/Koenkk/zigbee-herdsman-converters/issues/6437)) ([5b5532e](https://github.com/Koenkk/zigbee-herdsman-converters/commit/5b5532ea2734ee607ba7ba3b2da892a7ca5bc9e5))
9
+ * Update SIN-4-FP-21 and SIN-4-FP-20 from NodOn ([#6429](https://github.com/Koenkk/zigbee-herdsman-converters/issues/6429)) ([1d692cc](https://github.com/Koenkk/zigbee-herdsman-converters/commit/1d692ccf6e27687b173aee03e6e048bac0c1d631))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **detect:** Detect `_TZ3210_778drfdt` as MiBoxer FUT037Z https://github.com/Koenkk/zigbee2mqtt/issues/19343 ([2ec4b6f](https://github.com/Koenkk/zigbee-herdsman-converters/commit/2ec4b6fcdf6c808b6b028a541d658492c9ffe6a7))
15
+ * Fix Vimar 14594 not reporting position [@lanny318](https://github.com/lanny318) https://github.com/Koenkk/zigbee2mqtt/issues/18628 ([9486f23](https://github.com/Koenkk/zigbee-herdsman-converters/commit/9486f235a77b2ec694118cd4fe8317f06e49f494))
16
+
3
17
  ## [15.111.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v15.110.0...v15.111.0) (2023-11-08)
4
18
 
5
19
 
@@ -16,6 +16,7 @@ declare const converters: {
16
16
  schneider_lighting_ballast_configuration: Fz.Converter;
17
17
  wiser_lighting_ballast_configuration: Fz.Converter;
18
18
  wiser_smart_thermostat: Fz.Converter;
19
+ nodon_fil_pilote_mode: Fz.Converter;
19
20
  fan: Fz.Converter;
20
21
  thermostat: Fz.Converter;
21
22
  thermostat_weekly_schedule: Fz.Converter;
@@ -1 +1 @@
1
- {"version":3,"file":"fromZigbee.d.ts","sourceRoot":"","sources":["../src/converters/fromZigbee.ts"],"names":[],"mappings":"AAKA,OAAO,EAAC,EAAE,EAAoC,MAAM,cAAc,CAAC;AAkrMnE,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAmC,CAAC;AAEpD,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"fromZigbee.d.ts","sourceRoot":"","sources":["../src/converters/fromZigbee.ts"],"names":[],"mappings":"AAKA,OAAO,EAAC,EAAE,EAAoC,MAAM,cAAc,CAAC;AAssMnE,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAmC,CAAC;AAEpD,eAAe,UAAU,CAAC"}
@@ -6270,6 +6270,31 @@ const converters2 = {
6270
6270
  }
6271
6271
  },
6272
6272
  },
6273
+ nodon_fil_pilote_mode: {
6274
+ cluster: 'manuSpecificNodOnFilPilote',
6275
+ type: ['attributeReport', 'readResponse'],
6276
+ convert: (model, msg, publish, options, meta) => {
6277
+ const payload = {};
6278
+ const mode = msg.data['0'];
6279
+ if (mode === 0x00)
6280
+ payload.mode = 'stop';
6281
+ else if (mode === 0x01)
6282
+ payload.mode = 'comfort';
6283
+ else if (mode === 0x02)
6284
+ payload.mode = 'eco';
6285
+ else if (mode === 0x03)
6286
+ payload.mode = 'anti-freeze';
6287
+ else if (mode === 0x04)
6288
+ payload.mode = 'comfort_-1';
6289
+ else if (mode === 0x05)
6290
+ payload.mode = 'comfort_-2';
6291
+ else {
6292
+ meta.logger.warn(`wrong mode : ${mode}`);
6293
+ payload.mode = 'unknown';
6294
+ }
6295
+ return payload;
6296
+ },
6297
+ },
6273
6298
  };
6274
6299
  const converters = { ...converters1, ...converters2 };
6275
6300
  exports.default = converters;