We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The controller behaves weirdly, possibly ending up in a crash.
How to reproduce: Write a python script using the high level commander, similar to
commander = cf.high_level_commander commander.takeoff(1.0, 2.0) time.sleep(3.0) commander.go_to(0, 0, 1, 0, 1) time.sleep(1) commander.go_to(0, 0, 1, math.pi, 1) time.sleep(1) commander.go_to(0, 0, 1, math.pi * 2, 1) time.sleep(1) commander.go_to(0, 0, 1, math.pi * 3, 1) time.sleep(1) commander.go_to(0, 0, 1, math.pi * 4, 1) time.sleep(1)
When reaching yaw > 2 * pi, the crazyflie should do weird things
The text was updated successfully, but these errors were encountered:
#533 Caping yaw in the PID controller for absolute setpoints
f28ef7a
No branches or pull requests
The controller behaves weirdly, possibly ending up in a crash.
How to reproduce:
Write a python script using the high level commander, similar to
When reaching yaw > 2 * pi, the crazyflie should do weird things
The text was updated successfully, but these errors were encountered: