From bd583783406e2c7ee5b47caa5f986333358b1606 Mon Sep 17 00:00:00 2001 From: Benjamin Braatz Date: Mon, 15 Feb 2021 14:36:30 +0100 Subject: [PATCH] Tweak 2 --- schaltschrank/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schaltschrank/config.py b/schaltschrank/config.py index ab1aa16..65d75a8 100644 --- a/schaltschrank/config.py +++ b/schaltschrank/config.py @@ -81,7 +81,7 @@ async def fu_handler(queues, fu): await out_queue.put({'name': 'motoran'}) await fu.set_frequency(30) await fu.start_inverter() - await asyncio.sleep(0.2) + await asyncio.sleep(0.15) await fu.stop_inverter() for out_queue in queues: await out_queue.put({'name': 'motoraus'}) @@ -93,7 +93,7 @@ async def fu_handler(queues, fu): await out_queue.put({'name': 'motoran'}) await fu.set_frequency(-30) await fu.start_inverter() - await asyncio.sleep(0.2) + await asyncio.sleep(0.15) await fu.stop_inverter() for out_queue in queues: await out_queue.put({'name': 'motoraus'}) -- 2.34.1