From 02a747066a575e31f60446c3cdc397146fb32076 Mon Sep 17 00:00:00 2001 From: Koenkk Date: Tue, 8 May 2018 20:23:10 +0200 Subject: [PATCH] Move MFKZQ01LM ignore parsers to end. --- lib/converters/zigbee2mqtt.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) 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;