From bd83603bace86e088feba6b8c369283c95f8e0bd Mon Sep 17 00:00:00 2001 From: aris Date: Tue, 1 Jul 2025 11:44:48 +0200 Subject: [PATCH] Added status messages for swarm.reset_estimators --- cflib/crazyflie/swarm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cflib/crazyflie/swarm.py b/cflib/crazyflie/swarm.py index eeb562b77..632fc44cf 100644 --- a/cflib/crazyflie/swarm.py +++ b/cflib/crazyflie/swarm.py @@ -185,7 +185,9 @@ def reset_estimators(self): Reset estimator on all members of the swarm and wait for a stable positions. Blocks until position estimators finds a position. """ + print('Waiting for estimators to find positions...', end='\r') self.parallel_safe(self.__reset_estimator) + print('Waiting for estimators to find positions...success!') def sequential(self, func, args_dict=None): """