Fork of MPU-6050 by SSSRC 2016s

Revision:
2:a563d179ac08
Parent:
1:e55c6ac9c49b
Child:
5:15198869706e
--- a/MPU6050.h	Sat May 14 11:31:22 2016 +0000
+++ b/MPU6050.h	Sat May 14 11:36:42 2016 +0000
@@ -291,7 +291,6 @@
 
     void readAccelData(int16_t * destination) {
         /** 加速度の読み出し
-         *
          *  @param destination int[3]の配列を渡してください、加速度をxyz順に返します
          */
         uint8_t rawData[6];  // x/y/z accel register data stored here
@@ -303,7 +302,6 @@
 
     void readGyroData(int16_t * destination) {
         /** 角速度の読み出し
-         *
          *  @param destination int[3]の配列を渡してください、角速度をxyz順に返します
          */
         uint8_t rawData[6];  // x/y/z gyro register data stored here
@@ -315,7 +313,6 @@
 
     int16_t readTempData() {
         /** 温度の読み出し
-         *
          *  @return int型の変数に代入してください、温度を返します
          */
         uint8_t rawData[2];  // x/y/z gyro register data stored here