Control with VICON

Discussions related to positioning systems where the position is calculated outside the Crazyflie and sent to the device using radio, including MoCap systems
Post Reply
Zafer
Beginner
Posts: 6
Joined: Wed Apr 27, 2022 7:43 am

Control with VICON

Post by Zafer »

I am planning to write my own LQR controller (onboard) from setpoints to motor power distributions. For this I will make changes to the firmware.

I want to do this using position and attitude data from a VICON motion capture system. Can I neglect the gyroscope and observer and only make use of the data from VICON to control one crazyflie? Or is it possible to include the VICON data with the gyroscope and observer?

I read that Crazyswarm supports external motion capture systems as VICON, but the Crazyflie Python API does not? Also is Crazyswarm just a way to control (send commands/setpoints) to one or more crazieflies with external motion capture systems? As in, it is not related to the firmware in which i want to change the controller structure right?
kristoffer
Bitcraze
Posts: 630
Joined: Tue Jun 30, 2015 7:47 am

Re: Control with VICON

Post by kristoffer »

Hi!

You can send external position information to the estimator through the localization service, implemented in
https://github.com/bitcraze/crazyflie-f ... _service.c

There are two flavors, you can either push in only the position (extPositionHandler()) or the full pose (extPoseHandler()). Either way the data will be pushed to the estimator to be fused with other sensor information.

The python lib contains implementations to use the functionality mentioned above. Please see the qualisys_hl_commander.py example (https://github.com/bitcraze/crazyflie-l ... #L233-L236), it should show the concepts. It uses the Qualisys but a Vicon implementation should be similar.

The Crazy Swarm uses the same mechanism to push position/pose data to the Crazyflie, but with a different implementation on the PC-side.

There is a library from Crazy Swarm that generalizes access to mocap systems, you can check it out at https://github.com/IMRCLab/libmotioncapture
Zafer
Beginner
Posts: 6
Joined: Wed Apr 27, 2022 7:43 am

Re: Control with VICON

Post by Zafer »

Thank you very much!
Post Reply