Crazyflie, consistent crash #543
Unanswered
Kalib-Drift
asked this question in
Q&A
Replies: 1 comment 11 replies
-
The first question that comes to mind is how your system is set up? How are your 4 anchors placed? 4 anchors could probably work but there is no redundancy and a couple more is generally useful. The second question is if you place the Crazyflie pointing in the correct direction, along the x-axis, before taking off
Check out the something like this (not complete code) with SyncCrazyflie(uri, cf=Crazyflie(rw_cache='./cache')) as scf:
with PositionHlCommander(scf) as pc:
# Hover for 5 seconds
time.sleep(5)
# Go to 0, 0, 1
pc.go_to(0.0, 0.0, 1.0) Note: you probably don't want to go to z=0 as this is the floor |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey everyone, I am currently having an issue with the crazyflie following what seems like the exact flight path and consistently crashing because of this.
I have my room set up with 4 LPS nodes in TWR mode, tracking the crazyflie decently and accurately. when using the cfclient I have the crazyflie set to hold altitude, when telling it to take off from the ground it will rise then swing to the left then forward into the wall, my first thought was that this is an issue with its motors but I get the same result when testing on different crazyflies. it's funny how accurate it is, I have gotten to a point in my troubleshooting where I tell it to take off and then run across the room to catch it in a specific spot.
I think it is trying to hold a specific flight path or position outside my area.
how may I tell it to hover at 0,0,0?
Beta Was this translation helpful? Give feedback.
All reactions