Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cflib/crazyflie/swarm.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ def get_estimated_positions(self):
"""
Return a `dict`, keyed by URI and with the SwarmPosition namedtuples as
value, with the estimated (x, y, z) of each Crazyflie in the swarm.

This function is very costly in resources and is not recommended to be
used in a loop. To continuously get the position of the Crazyflies, use the
start_position_printing() function in the autonomousSequence.py example.
"""
self.parallel_safe(self.__get_estimated_position)
return self._positions
Expand Down