From 4f7bc38df022b56152d56e20095496143b1953dd Mon Sep 17 00:00:00 2001 From: mrbungle64 Date: Thu, 22 Feb 2024 17:05:49 +0100 Subject: [PATCH] Log 'Evt' events --- main.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.js b/main.js index fb5e495..496e905 100644 --- a/main.js +++ b/main.js @@ -715,6 +715,10 @@ class EcovacsDeebot extends utils.Adapter { }); }); + this.vacbot.on('Evt', (obj) => { + this.log.info('Evt message: ' + JSON.stringify(obj)); + }); + this.vacbot.on('LastError', (obj) => { if (this.errorCode !== obj.code) { if (obj.code === '110') {