DFRobot DFR0209 빠른 시작 매뉴얼 - 페이지 3
{카테고리_이름} DFRobot DFR0209에 대한 빠른 시작 매뉴얼을 온라인으로 검색하거나 PDF를 다운로드하세요. DFRobot DFR0209 6 페이지.
// # Editor
: Roy from DFRobot
// # Date
: 10.12.2013
// # Product name: 6 Dof shield for Arduino
// # Product SKU : DFR0209
// # Version
// # Description:
// # The sketch for driving the 6 Dof shield for Arduino via I2C interface
#include <FreeSixIMU.h>
#include <FIMU_ADXL345.h>
#include <FIMU_ITG3200.h>
#include <Wire.h>
int16_t angle[2]; // pitch & roll
// Set the FreeSixIMU object
FreeSixIMU sixDOF = FreeSixIMU();
int rawSixDof[6];
void setup()
{
Serial.begin(9600);
Wire.begin();
delay(5);
sixDOF.init();
delay(5);
}
void loop() {
sixDOF.getRawValues(rawSixDof);
for (int i=0; i<6; i++)
{
: 0.1
//begin the IMU
//output the raw data