How to send synchronous commands to multiple crazyflies #678
-
I wonder how I can send commands to multiple crazyflies synchronously? Right now I am trying to control 3 drones, and I am sending position commands to each of them sequentially :
How can I make these 3 crazyflies go to their respective take-off positions at the same time, rather than executing the commands sequentially? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This will actually execute it almost at the same time, since the goTo command does not block. If you need exact synchronization, you have to use broadcast commands (where each drone receives the exact same command). For goTo, the broadcast command can only support relative and not absolute positions, so it doesn't work in your case. |
Beta Was this translation helpful? Give feedback.
This will actually execute it almost at the same time, since the goTo command does not block.
If you need exact synchronization, you have to use broadcast commands (where each drone receives the exact same command). For goTo, the broadcast command can only support relative and not absolute positions, so it doesn't work in your case.