From 21533e508493e0a5425ee8cc2d4036df871bdff0 Mon Sep 17 00:00:00 2001 From: jens Date: Fri, 18 Dec 2020 19:06:47 +0100 Subject: [PATCH] - removed recognising of activate --- tasks/stirrer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tasks/stirrer.py b/tasks/stirrer.py index 43c4afa..b0fe7ef 100644 --- a/tasks/stirrer.py +++ b/tasks/stirrer.py @@ -25,8 +25,6 @@ class StirrerTask(ATask): for pair in data.items(): if 'Speed' in pair[0]: self.device.set_speed(pair[1]) - if 'Activate' in pair[0]: - self.device.activate(pair[1] == 1) async def send(self, data): await self.msg_handler.send(data)