Home About Store
1 / 8
Jul 2015

Hey all! Since Flutter run's user code and provides a wireless connection using the same board, it's a great low cost platform for building drones.

As such, I've started working on some drone code using a chassis from Game of Drones28, a cheap chinese IMU (MPU-6050 board), a Flutter Basic, and an Explorer board. Of course control is provided by the awesome Remote Control24 board we sell.

I've got all the controls working and I am hacking up someone's drone code from the web, but it's still not working properly. The code is posted on github41.

If anyone wants to fully own this and make it fly, I can provide all necessary hardware. If you've ever built a drone from scratch using Arduino, please say so here and let's get talking!

Taylor

  • created

    Jul '15
  • last reply

    Jul '15
  • 7

    replies

  • 8.4k

    views

  • 4

    users

  • 1

    like

  • 7

    links

I have a quad flying using my own derivative of this code running in an ArduPilot with stability, baro pressure, GPS, battery monitoring etc. Am just waiting on my 5 Flutter boards so I can implement a whole lot more functionality.

What is your timeframe for development?

Hey, this sounds great. What gyro do you guys recommend? The MPU-6050 is kinda lame from what I hear. Is there one that works over SPI instead of I2C? Something 9 axis would be nice.

I can spin a custom drone shield with room to mount an IMU, so they don't have to be hand-wired. Then I can hook you guys up with those. We'll ship all your boards in about 2 months, which is enough time for me to get some prototype drone shields back too.

The 9 axis' that you speak of being: 3-axis gyro, 3-axis accelerator, 3-axis magnetic field and air pressure
Correct?

I was only able to find one that used SPI:
And it's $75.... :-/
http://www.karlssonrobotics.com/cart/9-degrees-of-freedom-razor-imu/?gclid=Cj0KEQjww42tBRCO-sfEiO3DvYMBEiQAHeqMKHGS9M7ZKp6O4TH61JeMsKMSjO28evqAVl0aZ5QzxyUaAtBC8P8HAQ22

6-axis is definitely necessary I'd say (gyro and accelerometer), but why magnetic field/air pressure? Sure, you can use air pressure to help determine altitude, but it's highly dependent on weather and the longer the flight time the more likely that data is going to become skewed. For cost reasons, 6 axis would probably be sufficient. Bonus points though for making it plug-and-play, and having the option to simple say which one you're using in the code, unplug one module and plug the other in. Same with GPS if we do end up going that route... not having it included but having a spot to plug one in if desired is a great way to help break down the cost for those just looking for a cheap stabilization unit.

I've used the KK Multicopter 1.3 board a bit, which only has 3-axis gyro, and it's quite a bit more difficult to fly then something that incorporates accelerometers as well, but only costs like $12.

Never had a problem with the MPU-6050 myself, works well for me. I use a GY-273 3 axis magnetometer for heading/pointing and BMP180 for air pressure measurement for differential altitude.

Having them separate means I can keep the MPU as close to the CG as possible, the 273 as far away from the noisy electronics like the motors and speed controls as possible and the BMP tucked away out of any prop wash/airflow. Usually stick the 273 on my GPS mast for best clearance. BMP is often near the rest of the electronics. I have custom build quads/hexs that need more flexibility than most people, but I also find that it's actually cheaper than the all in ones too.

Using GPS alone for altitude is too inaccurate and has a lot more drift than air pressure. I use a combination of both to try and minimize drift and reduce signal noise for a more stable altitude hold hover. Works quite well when most flight times are less than 20 mins. Does a reset if you land and then take off again too.

Silly me.... hadn't realized 'magnetic field' could be a reference to a heading/compass..... gah.
So, all three are best for accuracy, but maybe in different modules so that they can not be effected by other electronics. I've never built a quad with any sort of custom software on it, so this is incredibly interesting. smile

I would highly sugest this
https://www.adafruit.com/product/160428
It's a 10DOF IMU with manometer and barometer integrated in. and Adafruit has great documentation it only took me 5 min to get the example sketch running( https://learn.adafruit.com/ahrs-for-adafruits-9-dof-10-dof-breakout/using-adafruit-ahrs7) . I got a GPS module from them too so in theory could make it autonomous (might need more memory for that)
I actually got both for another project I'm going to integrate flutter in. But I'm hoping to sell it so I'll post about it when it's better developed lol