-
Hello, I am trying to test 2 crazyflies in a swarm using the Python code on the bitcraze website. But I keep on getting the error message as shown below. As of now, the code just tries to connect multiple drones and do a light check. I saw there was a similar discussion that started 2 years ago but it did not solve my problem.
I do not know if I am missing some sort of driver or something, but I am able to fly a drone with a python script just fine, so I know I can connect to the drones (tested both URIs) using the crazyradio but the swarm throws up the error. And this code is from the website with a few tweaks to the uri. I appreciate any help I can get regarding this issue. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi! I've put your code in proper code blocks for easier readability. I've tried out your script exactly as it is but with different addresses, namely Could you tell anything else about your setup?
|
Beta Was this translation helpful? Give feedback.
Hi, I tried what you suggested and it worked. I then figured that technically the Crazyflie URI I had in the script and the actual URI were not the same. The crazyflie had a URI ending in E7 and the script had it ending in 07. Since the default URI is E7 and the script I copied from the website was 07. I didn't look at it much. But that's where the issue stemmed from. I just had to change the script to have the same 'E' instead of '0'.
Thank you both for your help!