Skip to content

Commit

Permalink
fix: device/zigbeetlc: Removed no longer needed endpoint quirk (#8241)
Browse files Browse the repository at this point in the history
Co-authored-by: Rob van Oostenrijk <[email protected]>
  • Loading branch information
robvanoostenrijk and Rob van Oostenrijk authored Nov 1, 2024
1 parent c9e164d commit f54114a
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/devices/zigbeetlc.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Zcl} from 'zigbee-herdsman';

import {battery, binary, enumLookup, humidity, numeric, ota, quirkAddEndpointCluster, temperature} from '../lib/modernExtend';
import {battery, binary, enumLookup, humidity, numeric, ota, temperature} from '../lib/modernExtend';

const extend = {
comfortDisplay: binary({
Expand Down Expand Up @@ -61,11 +61,6 @@ const extend = {
attribute: {ID: 0x0106, type: Zcl.DataType.ENUM8},
description: 'Whether to enable the device display.',
}),
endpointQuirk: quirkAddEndpointCluster({
endpointID: 1,
outputClusters: ['genOta'],
inputClusters: ['genBasic', 'genPowerCfg', 'genIdentify', 'hvacUserInterfaceCfg', 'msTemperatureMeasurement', 'msRelativeHumidity'],
}),
humidityCalibration: numeric({
name: 'humidity_calibration',
unit: '%',
Expand Down Expand Up @@ -141,7 +136,6 @@ const definitions = [
extend.humidityCalibration,
extend.measurementInterval,
battery(),
extend.endpointQuirk,
ota(),
],
},
Expand Down Expand Up @@ -169,7 +163,6 @@ const definitions = [
extend.humidityCalibration,
extend.measurementInterval,
battery(),
extend.endpointQuirk,
ota(),
],
},
Expand Down Expand Up @@ -200,7 +193,6 @@ const definitions = [
extend.humidityCalibration,
extend.measurementInterval,
battery(),
extend.endpointQuirk,
ota(),
],
},
Expand Down

0 comments on commit f54114a

Please sign in to comment.