Page 1 of 1

New to Crazyflie help

Posted: Tue Sep 08, 2015 5:59 am
by Vincent
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

Re: New to Crazyflie help

Posted: Tue Sep 08, 2015 2:54 pm
by derf
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

Re: New to Crazyflie help

Posted: Wed Jan 20, 2016 4:06 am
by rgalvez
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
Hi Fred,

How to run the examples?Thanks

Re: New to Crazyflie help

Posted: Fri Jan 22, 2016 12:21 pm
by derf
Go to the examples directory and run the examples from the command line.
E.g.

Code: Select all

python ramp.py
You can also run the examples from an IDE like PyCharm.

Re: New to Crazyflie help

Posted: Tue Jan 26, 2016 4:13 pm
by rgalvez
Thanks derf!