Skip to content

Commit

Permalink
fix: Remove manufacturer code for Elko attributes (#786)
Browse files Browse the repository at this point in the history
Remove the manufacturer code to fix the reporting for Elko Super TR
  • Loading branch information
arnerek committed Oct 25, 2023
1 parent 4a92968 commit 1b46aac
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/zcl/definition/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2037,24 +2037,24 @@ const Cluster: {
danfossRoomFloorSensorMode: {ID: 0x4120, type: DataType.enum8, manufacturerCode: ManufacturerCode.DANFOSS},
danfossFloorMinSetpoint: {ID: 0x4121, type: DataType.int16, manufacturerCode: ManufacturerCode.DANFOSS},
danfossFloorMaxSetpoint: {ID: 0x4122, type: DataType.int16, manufacturerCode: ManufacturerCode.DANFOSS},
elkoLoad: {ID: 0x0401, type: DataType.uint16, manufacturerCode: ManufacturerCode.ELKO},
elkoDisplayText: {ID: 0x0402, type: DataType.charStr, manufacturerCode: ManufacturerCode.ELKO},
elkoSensor: {ID: 0x0403, type: DataType.enum8, manufacturerCode: ManufacturerCode.ELKO},
elkoRegulatorTime: {ID: 0x0404, type: DataType.uint8, manufacturerCode: ManufacturerCode.ELKO},
elkoRegulatorMode: {ID: 0x0405, type: DataType.boolean, manufacturerCode: ManufacturerCode.ELKO},
elkoPowerStatus: {ID: 0x0406, type: DataType.boolean, manufacturerCode: ManufacturerCode.ELKO},
elkoDateTime: {ID: 0x0407, type: DataType.octetStr, manufacturerCode: ManufacturerCode.ELKO},
elkoMeanPower: {ID: 0x0408, type: DataType.uint16, manufacturerCode: ManufacturerCode.ELKO},
elkoExternalTemp: {ID: 0x0409, type: DataType.int16, manufacturerCode: ManufacturerCode.ELKO},
elkoNightSwitching: {ID: 0x0411, type: DataType.boolean, manufacturerCode: ManufacturerCode.ELKO},
elkoFrostGuard: {ID: 0x0412, type: DataType.boolean, manufacturerCode: ManufacturerCode.ELKO},
elkoChildLock: {ID: 0x0413, type: DataType.boolean, manufacturerCode: ManufacturerCode.ELKO},
elkoMaxFloorTemp: {ID: 0x0414, type: DataType.uint8, manufacturerCode: ManufacturerCode.ELKO},
elkoRelayState: {ID: 0x0415, type: DataType.boolean, manufacturerCode: ManufacturerCode.ELKO},
elkoVersion: {ID: 0x0416, type: DataType.octetStr, manufacturerCode: ManufacturerCode.ELKO},
elkoCalibration: {ID: 0x0417, type: DataType.int8, manufacturerCode: ManufacturerCode.ELKO},
elkoLastMessageId: {ID: 0x0418, type: DataType.uint8, manufacturerCode: ManufacturerCode.ELKO},
elkoLastMessageStatus: {ID: 0x0419, type: DataType.uint8, manufacturerCode: ManufacturerCode.ELKO},
elkoLoad: {ID: 0x0401, type: DataType.uint16},
elkoDisplayText: {ID: 0x0402, type: DataType.charStr},
elkoSensor: {ID: 0x0403, type: DataType.enum8},
elkoRegulatorTime: {ID: 0x0404, type: DataType.uint8},
elkoRegulatorMode: {ID: 0x0405, type: DataType.boolean},
elkoPowerStatus: {ID: 0x0406, type: DataType.boolean},
elkoDateTime: {ID: 0x0407, type: DataType.octetStr},
elkoMeanPower: {ID: 0x0408, type: DataType.uint16},
elkoExternalTemp: {ID: 0x0409, type: DataType.int16},
elkoNightSwitching: {ID: 0x0411, type: DataType.boolean},
elkoFrostGuard: {ID: 0x0412, type: DataType.boolean},
elkoChildLock: {ID: 0x0413, type: DataType.boolean},
elkoMaxFloorTemp: {ID: 0x0414, type: DataType.uint8},
elkoRelayState: {ID: 0x0415, type: DataType.boolean},
elkoVersion: {ID: 0x0416, type: DataType.octetStr},
elkoCalibration: {ID: 0x0417, type: DataType.int8},
elkoLastMessageId: {ID: 0x0418, type: DataType.uint8},
elkoLastMessageStatus: {ID: 0x0419, type: DataType.uint8},
fourNoksHysteresisHigh: {ID: 0x0101, type: DataType.uint16, manufacturerCode: ManufacturerCode._4_NOKS},
fourNoksHysteresisLow: {ID: 0x0102, type: DataType.uint16, manufacturerCode: ManufacturerCode._4_NOKS},
},
Expand Down

0 comments on commit 1b46aac

Please sign in to comment.