Search found 1050 matches

by kimberly
Tue Apr 12, 2022 6:51 am
Forum: Developer Discussions
Topic: Implement custom controller on Crazyflie in Python
Replies: 1
Views: 8350

Re: Implement custom controller on Crazyflie in Python

hi!

There are actually several similar threads on this forum to your request like this one, so please watch and comment those viewtopic.php?t=5311
Also there is an issue on the github repo that is about your request: https://github.com/bitcraze/crazyflie-f ... issues/572
by kimberly
Tue Apr 12, 2022 6:49 am
Forum: Bitcraze
Topic: Position Failure
Replies: 3
Views: 9202

Re: Position Failure

That seems weird that the position seems okay in the hand but it doesn't fly well. Could you perhaps provide a video of the crazyflie, with a plot of the state estimate from the plotter tab while doing this (tip, right click on the plot you can select export)
by kimberly
Thu Apr 07, 2022 2:47 pm
Forum: Bitcraze
Topic: Position Failure
Replies: 3
Views: 9202

Re: Position Failure

Hi! If you have the crazyflie in your hand without flying, and move it around, does the stateEstimate seem okay to you in the plotter? It can also be that the front of the crazyflie is not facing the right direction, as the loco positioning system does not estimate yaw. If you go back to the tutoria...
by kimberly
Thu Apr 07, 2022 2:34 pm
Forum: Autonomous flight
Topic: New controller for the crazyflie 2.1
Replies: 9
Views: 19373

Re: New controller for the crazyflie 2.1

I think that this forum thread is suitable for you about controlling the motor controls directly: https://forum.bitcraze.io/viewtopic.php?t=5258 It doesn't work by standard and using the parameters framework will be to slow. Also in general the communication delay will make it close to impossible to...
by kimberly
Thu Apr 07, 2022 2:26 pm
Forum: Lighthouse positioning system
Topic: [SOLVED] Grayed Out Command Based Control Tab
Replies: 4
Views: 38409

Re: Grayed Out Command Based Control Tab

Thanks for the screenshot!

Yes it is as I expected, it thinks that your keyboard is a usb based controller, so we will need to black list it.

Have you seen this forum thread? viewtopic.php?t=5083
You can try the solution in there and see if it works.
by kimberly
Wed Apr 06, 2022 6:18 pm
Forum: Autonomous flight
Topic: New controller for the crazyflie 2.1
Replies: 9
Views: 19373

Re: New controller for the crazyflie 2.1

Indeed send_position_setpoint is also used in crazyflie_autonomousSequence.py example. But I think you should look at the def send_setpoint(self, roll, pitch, yaw, thrust) instead as that actually sends roll pitch and yaw, which is more interesting to you if you want to make a position PID controlle...
by kimberly
Wed Apr 06, 2022 6:13 pm
Forum: Developer Discussions
Topic: About CrazyS Simulation and ROS
Replies: 1
Views: 8375

Re: About CrazyS Simulation and ROS

Hi! Let me try to answer your questions as good as I can. 1) Yes you have to use ROS for that through the crazyS package. Please check out the readme of the project for instructions . 2) No CrazyS does not do SITL but has their own controllers based on the PID control of the crazyflie. Sim_CF has HI...
by kimberly
Wed Apr 06, 2022 5:59 pm
Forum: Lighthouse positioning system
Topic: [SOLVED] Grayed Out Command Based Control Tab
Replies: 4
Views: 38409

Re: Grayed Out Command Based Control Tab

Could you also share a printscreen of the cfclient as well? Sometimes it will detect a certain usb device as a controller, and then it will disable the commander panel. I'm a bit worried about this error message about the lighthouse tab: Traceback (most recent call last): File "/home/wimiadmin/...
by kimberly
Wed Apr 06, 2022 12:11 pm
Forum: AI-deck
Topic: wifi_jpeg_streamer issue
Replies: 3
Views: 8739

Re: wifi_jpeg_streamer issue

Hi,

Sorry I'm not aware of that if they will update it so you will need to contact them directly on their issue list. If you use the docker images provided by us for the aideck development, it should be easy to switch from different version of the SDK up to 4.8
by kimberly
Mon Apr 04, 2022 10:50 am
Forum: Autonomous flight
Topic: New controller for the crazyflie 2.1
Replies: 9
Views: 19373

Re: New controller for the crazyflie 2.1

Hi! Let me try to help you out with your questions. Yes that is possible and no you will not be needing to change the C code of the controller if you do it correctly. You will just need to give only attitude setpoints to the crazyflie in that case. How the controllers scheme looks like you can check...