I recently got my Crazyflie 2.0. How do i start writing programs for it, where do i start? I have some experience with Python but only little.
Where do i get references i find the documentation to be lacking. Please help
New to Crazyflie help
Re: New to Crazyflie help
Hi,
You can find some information in the wiki (some of it is a bit hidden), for example about the Crazyflie Python API:
https://wiki.bitcraze.io/doc:crazyflie:api:python:index
A good start is also to look at the examples here:
https://github.com/bitcraze/crazyflie-c ... p/examples
When you have specific questions, you can always ask them in the forum.
Regards,
Fred
You can find some information in the wiki (some of it is a bit hidden), for example about the Crazyflie Python API:
https://wiki.bitcraze.io/doc:crazyflie:api:python:index
A good start is also to look at the examples here:
https://github.com/bitcraze/crazyflie-c ... p/examples
When you have specific questions, you can always ask them in the forum.
Regards,
Fred
Re: New to Crazyflie help
Hi Fred,derf wrote:Hi,
You can find some information in the wiki (some of it is a bit hidden), for example about the Crazyflie Python API:
https://wiki.bitcraze.io/doc:crazyflie:api:python:index
A good start is also to look at the examples here:
https://github.com/bitcraze/crazyflie-c ... p/examples
When you have specific questions, you can always ask them in the forum.
Regards,
Fred
How to run the examples?Thanks
Re: New to Crazyflie help
Go to the examples directory and run the examples from the command line.
E.g.
You can also run the examples from an IDE like PyCharm.
E.g.
Code: Select all
python ramp.py
Re: New to Crazyflie help
Thanks derf!