Crazyflie Brushless not able to fly although it is connected #2238
Answered
by
ArisMorgens
Saswati-Project
asked this question in
Q&A
|
Hi, I then tried to fly the drone using a Python script. In both cases, the Crazyflie connected successfully, which I confirmed by observing the LED, but it did not take off. The Python script I used is as follows: This script works well with the Crazyflie 2.1+, which is the other model I have, when I change the URI to match that model. |
Answered by
ArisMorgens
Aug 17, 2026
Replies: 1 comment 1 reply
|
Hello @Saswati-Project! The Crazyflie 2.1 Brushless needs to be armed before taking off, so that's the missing part in your script. You can add this right before taking off: # Arm the Crazyflie
scf.cf.supervisor.send_arming_request(True)
time.sleep(1.0)Let us know if this resolves the issue. |
1 reply
Answer selected by
Saswati-Project
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @Saswati-Project!
The Crazyflie 2.1 Brushless needs to be armed before taking off, so that's the missing part in your script. You can add this right before taking off:
Let us know if this resolves the issue.