diff --git a/lib/converters/zigbee2mqtt.js b/lib/converters/zigbee2mqtt.js index cff813ab..6547edae 100644 --- a/lib/converters/zigbee2mqtt.js +++ b/lib/converters/zigbee2mqtt.js @@ -145,12 +145,6 @@ const parsers = [ } } }, - { - devices: ['MFKZQ01LM'], - cid: 'genMultistateInput', - type: 'devChange', - convert: () => null - }, { devices: ['MFKZQ01LM'], cid: 'genAnalogInput', @@ -168,12 +162,6 @@ const parsers = [ } } }, - { - devices: ['MFKZQ01LM'], - cid: 'genAnalogInput', - type: 'devChange', - convert: () => null - }, { devices: ['WSDCGQ01LM', 'WSDCGQ11LM'], cid: 'msRelativeHumidity', @@ -377,6 +365,18 @@ const parsers = [ type: 'devChange', convert: () => null }, + { + devices: ['MFKZQ01LM'], + cid: 'genMultistateInput', + type: 'devChange', + convert: () => null + }, + { + devices: ['MFKZQ01LM'], + cid: 'genAnalogInput', + type: 'devChange', + convert: () => null + }, ]; module.exports = parsers;