Search found 31 matches

by thasu
Fri May 25, 2018 5:07 am
Forum: Developer Discussions
Topic: Fly higher than 2m using Flowdeck
Replies: 3
Views: 1997

Fly higher than 2m using Flowdeck

Is there a way to bypass the height value in the following command and use the altitude calculated by the pressure sensor to hover in higher altitudes while using other parameters (Vx, Vy, yaw rate).

cf.commander.send_hover_setpoint(Vx, Vy, yaw, Height)
by thasu
Wed May 02, 2018 7:41 am
Forum: Developer Discussions
Topic: Kalman filter position update requirement
Replies: 3
Views: 1804

Re: Kalman filter position update requirement

Thanks for the reply. Now the kalman estimator seems to be working. I'm using flow deck with the crazyflie. I have another question. Kalman estimator shows the best estimate of the current position. Assume we are moving in a closed loop path. How can we use several particles to track the position wi...
by thasu
Sat Apr 21, 2018 5:53 pm
Forum: Developer Discussions
Topic: Kalman filter position update requirement
Replies: 3
Views: 1804

Kalman filter position update requirement

Does the Kalman estimator require Loco positioning nodes to work correctly? I'm reading the x,y,z position data from the kalman estimator log and x position stays at 0.5 even the Crazyflie move in the x direction. Further, I would like to know whether this estimator works if we move the Crazyflie by...
by thasu
Tue Nov 14, 2017 3:12 am
Forum: Developer Discussions
Topic: Flow deck parameters
Replies: 2
Views: 1664

Flow deck parameters

Could someone please explain what are the meanings of following log parameters in flowdeck. LOG_ADD(LOG_UINT8, motion, &currentMotion.motion) LOG_ADD(LOG_INT16, deltaX, &currentMotion.deltaX) LOG_ADD(LOG_INT16, deltaY, &currentMotion.deltaY) LOG_ADD(LOG_UINT16, shutter, &currentMotio...
by thasu
Fri Nov 03, 2017 5:38 am
Forum: Developer Discussions
Topic: Accessing the RadioController inputs
Replies: 16
Views: 8993

Re: Accessing the RadioController inputs

Now I can understand it.I have 1 more question. While using the previous command generating code file, how can I send data to computer using the radio. I did it using 'DEBUG_PRINT' before using the 'sequence.c' code. To clarify it more let's assume that we are using a for loop to navigate the CF in ...
by thasu
Thu Nov 02, 2017 3:13 am
Forum: Developer Discussions
Topic: DIY SLAM deck
Replies: 1
Views: 1343

DIY SLAM deck

I'm trying to detect obstacles infront of the CF using a front mounted ToF sensor (Adafruit brekaout board for VL53l0X). After connecting the I2C lines of the ToF sensor to CF it doesn't detect the flow deck. Can you please tell me what modification are recommended to do to read the values from ToF ...
by thasu
Wed Oct 25, 2017 5:06 am
Forum: Developer Discussions
Topic: Accessing the RadioController inputs
Replies: 16
Views: 8993

Re: Accessing the RadioController inputs

I got your point. Can you tell me what code part should I include for the "sequence.c" to go to the hover mode when it's needed, because it's more stable than just setting the altitude from the setpoint command.
by thasu
Fri Oct 20, 2017 1:02 am
Forum: Developer Discussions
Topic: Accessing the RadioController inputs
Replies: 16
Views: 8993

Re: Accessing the RadioController inputs

The commands are generated inside the code as in the figure 8 code. But there we can just give only Vx,Vy,Z and yaw rate and we use the flow deck for that. My point is if we use another sensor system for CF and develop an algorithm to generate commands onboard, how can we input them to the system? A...
by thasu
Thu Oct 19, 2017 12:14 am
Forum: Developer Discussions
Topic: Accessing the RadioController inputs
Replies: 16
Views: 8993

Re: Accessing the RadioController inputs

Thank you for the reply. That is very helpful. Further, I need to know how to send commands same as the radio without using the radio. As an example, I would send 60% throttle for 2 seconds and hover command after that. Where can I enter this code part?
by thasu
Wed Oct 18, 2017 2:11 pm
Forum: Developer Discussions
Topic: Accessing the RadioController inputs
Replies: 16
Views: 8993

Re: Accessing the RadioController inputs

I want to generate control values without using the radio.