-
What is the best way to access crazyflie drone acceleration data in a python script? |
Beta Was this translation helpful? Give feedback.
Answered by
jpreiss
May 19, 2022
Replies: 1 comment 9 replies
-
Motion capture systems don't measure velocity or acceleration. You can log the Crazyflie's onboard state estimate with the logging system. Be aware of latency if you are using it for feedback control. Estimating derivatives with finite differences of |
Beta Was this translation helpful? Give feedback.
9 replies
Answer selected by
vannem95
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Motion capture systems don't measure velocity or acceleration. You can log the Crazyflie's onboard state estimate with the logging system. Be aware of latency if you are using it for feedback control.
Estimating derivatives with finite differences of
position()
values might also work, but you need to be careful about noise (and also remember that lowpass filtering adds delay).