Electronic – arduino – Gyro for Arduino

arduinogyro

[Background]

I've assembled a quadrocopter and now I'm going to design a flight controller for it, using Arduino. I can not use any of flight controllers, which you can buy in the store, only hand-made. So, I really want to find the EASIEST hardware solution for it.

[/Background]

The only gyro I've found at local stores is digital LSM303 DLH. But I doubt hardly about one thing. At my local store it's being sold in QFN package. I've found this gyro being sold with a breakout board. I don't get it, why are there some other components on it? Can I just connect wires from the chip to arduino and read the values?

Or maybe you can advice some other gyro?

Best Answer

The components on the L3G4200D breakout board you linked to are:

  • 2 I2C pullup resistors (which you need for I2C)
  • 2 decoupling capacitors, which you need for providing proper power to the chip
  • a PLL low-pass filter, which is required for this gyro

So this breakout board already is the minimal solution you can get for this chip.

And since most (if not all) gyros you can get are in leadless packages with (typically) a 0.5mm pitch, you don't really want to solder wires to them manually. Using a breakout board is way better, and you get mounting holes for free :) (Dave Jones demonstrated in this EEVBlog episode how to do this with an accelerometer, if you really want to)