From 65ef3dbb763d79f61d10e80b18b99c3a0e423f2a Mon Sep 17 00:00:00 2001 From: Jorge Schrauwen Date: Sun, 17 Dec 2023 09:04:10 +0100 Subject: [PATCH] feat(ignore): add displayUnit and airQuality attributes to aqaraOpple cluster (#829) For https://github.com/Koenkk/zigbee-herdsman-converters/pull/6709, so we can switch those to modernExtend (enum)Lookups. I guess we should technically rename this to something like lumiManufacturerSpecific because that seems to be what it is, but that seems like a huge rename I do not want to attempt. --- src/zcl/definition/cluster.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/zcl/definition/cluster.ts b/src/zcl/definition/cluster.ts index c372236cd0..9374bed83e 100644 --- a/src/zcl/definition/cluster.ts +++ b/src/zcl/definition/cluster.ts @@ -4628,8 +4628,10 @@ const Cluster: { ID: 0xFCC0, manufacturerCode: ManufacturerCode.LUMI_UNITED_TECH, attributes: { - mode: {ID: 9, type: DataType.uint8}, - illuminance: {ID: 0x0112, type: DataType.uint32} + mode: {ID: 0x0009, type: DataType.uint8}, + illuminance: {ID: 0x0112, type: DataType.uint32}, + displayUnit: {ID: 0x0114, type: DataType.uint8}, + airQuality: {ID: 0x0129, type: DataType.uint8}, }, commands: {}, commandsResponse: {}