From 5ec12d373c55672909cafb3c3be41b8ce95cbc14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Beye?= Date: Mon, 24 Oct 2022 08:37:21 +0200 Subject: [PATCH] feat(vendor.dreame): Support for the L10 Plus --- backend/lib/robots/dreame/DreameZ10ProValetudoRobot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lib/robots/dreame/DreameZ10ProValetudoRobot.js b/backend/lib/robots/dreame/DreameZ10ProValetudoRobot.js index eb9062b01e..70a91495b3 100644 --- a/backend/lib/robots/dreame/DreameZ10ProValetudoRobot.js +++ b/backend/lib/robots/dreame/DreameZ10ProValetudoRobot.js @@ -144,7 +144,7 @@ class DreameZ10ProValetudoRobot extends DreameGen2LidarValetudoRobot { static IMPLEMENTATION_AUTO_DETECTION_HANDLER() { const deviceConf = MiioValetudoRobot.READ_DEVICE_CONF(DreameValetudoRobot.DEVICE_CONF_PATH); - return !!(deviceConf && deviceConf.model === "dreame.vacuum.p2028"); + return !!(deviceConf && (deviceConf.model === "dreame.vacuum.p2028" || deviceConf.model === "dreame.vacuum.p2028a")); } }