Forked from Aaron Berk's ITG3200 driver class library, customized for my specific application using 9DoF-Stick by Sparkfun.

Dependents:   HARP

Fork of ITG3200 by Aaron Berk

ITG-3200 is triple axis, digital interface, gyro sensor.

This library is forked from Aaron Berk's work.

This library is for specific application using 9DoF-Stick.

Datasheet:

http://invensense.com/mems/gyro/documents/PS-ITG-3200-00-01.4.pdf

This library has a feature to correct thermal drift of the device. For details, see Thermal Drift.

ITG-3200は3軸のデジタルインターフェースを備えたジャイロセンサです。

このライブラリは 9DoF-Stick を使用した特定の企画のために保守しています。

mbed IDEが日本語をサポートするまでは英語でコメントを書いていきますが、サポートした後もきっと英語で書いていくでしょう。

このライブラリはデバイスの熱ドリフトを補正する機能を持っています。詳しくは Thermal Drift

Revision:
7:43b936a53b64
Parent:
6:a7ad6046824c
Child:
8:ac0365ab3cef
--- a/ITG3200.cpp	Thu Sep 13 14:36:13 2012 +0000
+++ b/ITG3200.cpp	Sat Sep 29 14:34:17 2012 +0000
@@ -35,12 +35,16 @@
 
 #include "ITG3200.h"
 
-ITG3200::ITG3200(PinName sda, PinName scl) : calibSamples(0), i2c_(sda, scl){
+ITG3200::ITG3200(PinName sda, PinName scl, bool fastmode) : calibSamples(0), i2c_(sda, scl){
 
     offset[0] = offset[1] = offset[2] = 0;
 
-    //400kHz, fast mode.
-    i2c_.frequency(400000);
+    if(fastmode){
+        //400kHz, fast mode.
+        i2c_.frequency(400000);
+    }
+    else
+        i2c_.frequency(100000);
     
     //Set FS_SEL to 0x03 for proper operation.
     //See datasheet for details.