I think taking off from the ground and hovering would be interesting.
BTW is this behaviour something you only see with the latest firmware (that is, did work before)?
Search found 428 matches
- Wed Apr 14, 2021 7:58 am
- Forum: Support
- Topic: Flying directly at wall in "Hover" mode
- Replies: 3
- Views: 579
- Tue Apr 13, 2021 8:19 am
- Forum: Lighthouse positioning system
- Topic: More than two basestations
- Replies: 1
- Views: 31
Re: More than two basestations
Hi Joe! The CPU load seems OK to me, that will probably not be a problem. The CF firmware will handle 3 base stations in a (fairly) good way, you should not have to change anything in the FW as far as I can see. Some of the client code on the other hand only handles 2 base stations, especially the g...
- Tue Apr 13, 2021 8:11 am
- Forum: External positioning systems
- Topic: StdDev of External Measurements
- Replies: 5
- Views: 229
Re: StdDev of External Measurements
If you use the send_extpose() method in the Extpos class (https://github.com/bitcraze/crazyflie-lib-python/blob/master/cflib/crazyflie/extpos.py#L54), the execution ends up in https://github.com/bitcraze/crazyflie-lib-python/blob/master/cflib/crazyflie/localization.py#L145-L159 where the pose is enc...
- Tue Apr 13, 2021 7:00 am
- Forum: Lighthouse positioning system
- Topic: Lighthouse calibration data inconsistency[2021.03]
- Replies: 1
- Views: 21
Re: Lighthouse calibration data inconsistency[2021.03]
Yes it is caused by the floating point precession The base station uses 6 decimals, so a dump (via USB) on one bs return this lhtx> param list fcal fcal.0.tilt -0.043805 fcal.0.phase 0.000000 fcal.0.curve 0.209360 fcal.0.gibphase 2.255891 fcal.0.gibmag 0.002426 fcal.0.ogeephase 1.676551 fcal.0.ogeem...
- Mon Apr 12, 2021 11:09 am
- Forum: Support
- Topic: Flying directly at wall in "Hover" mode
- Replies: 3
- Views: 579
Re: Flying directly at wall in "Hover" mode
Could you post a video when flying with the flow deck?
- Mon Apr 12, 2021 11:07 am
- Forum: General discussions
- Topic: Fly two crazyflies with the motion capture
- Replies: 3
- Views: 581
Re: Fly two crazyflies with the motion capture
You can write a python script that connects to your mocap system and pushed the position (or full pose) to the Crazyflies. I'm not sure which mocap system you use, but we hava an example for a Qualisys system in https://github.com/bitcraze/crazyflie-lib-python/blob/master/examples/qualisys/qualisys_...
- Fri Apr 09, 2021 6:57 am
- Forum: General discussions
- Topic: Detecting deck to be updated no reaction
- Replies: 4
- Views: 550
Re: Detecting deck to be updated no reaction
Hi! There is nothing in the Flow deck to update so the expected behaviour is that the CF should just look for update-able decks and after a second or two continue. Did your client stop at this point while flashing? If you have a drift with the flow deck it is usually because the floor under the craz...
- Fri Apr 09, 2021 6:52 am
- Forum: Autonomous flight
- Topic: Random Behavior while hovering/flying autonoumously
- Replies: 8
- Views: 429
Re: Random Behavior while hovering/flying autonoumously
I can see in your code (https://github.com/AliGriv/Crazyflie_te ... ain.py#L92) that you log the yaw-rate while the Crazyflie set point function taks an absolute yaw. Maybe there is a mixup between rates and absolute angles?
- Thu Apr 08, 2021 9:32 am
- Forum: Autonomous flight
- Topic: Random Behavior while hovering/flying autonoumously
- Replies: 8
- Views: 429
Re: Random Behavior while hovering/flying autonoumously
It looks like your controller is increasing the thrust when the CF starts to descend (after t=25s) but that it does not help and the CF is continuing down anyway. Are you running the stock firmware or do you have any modifications/decks that might change the normal behaviour? I had a quick look at y...
- Thu Apr 08, 2021 8:39 am
- Forum: External positioning systems
- Topic: Ways to increase power to the active marker deck IR LEDs?
- Replies: 7
- Views: 866
Re: Ways to increase power to the active marker deck IR LEDs?
Hi! The best way to store this information is probably in the persistent storage of the CF, there is some documentation here https://www.bitcraze.io/documentation/repository/crazyflie-firmware/2021.03/functional-areas/persistent_storage/ This way the ids will be connected to the drone. The functiona...