diff --git a/lib/converters/fromZigbee.js b/lib/converters/fromZigbee.js index 34610a45c..da5eee668 100644 --- a/lib/converters/fromZigbee.js +++ b/lib/converters/fromZigbee.js @@ -43,7 +43,7 @@ const precisionRound = (number, precision) => { // Global variable store that can be used by devices. const store = {}; -const parsers = { +const converters = { xiaomi_battery_3v: { cid: 'genBasic', type: 'attReport', @@ -352,7 +352,7 @@ const parsers = { }, }, - // Ignore parsers (these message dont need parsing). + // Ignore converters (these message dont need parsing). ignore_onoff_change: { cid: 'genOnOff', type: 'devChange', @@ -405,4 +405,4 @@ const parsers = { }, }; -module.exports = parsers; +module.exports = converters;