查看“Motion模块姿态测试示例”的源代码
←
Motion模块姿态测试示例
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{| style="width: 800px;" |- | <br> <big>本示例给出了Motion获取姿态的一些基本方法 <br> <br> <p style="color: #E87E05;font-size:135%">硬件清单</p> *[[mCookie-Battery]] *[[mCookie-Core]] *[[MCookie-Motion/zh|MCookie-Motion]] <br> <br> 将Battery、Core、Motion模块堆叠在一起,通过MicroUSB数据线接入电脑。 <br> <p style="color: #E87E05;font-size:135%">测试MPU6050姿态传感器</p> *打开'''文件'''->'''示例'''->'''_05_Microduino_10DOF'''->'''sensor_MPU6050'''的“MPU6050_raw”程序 [[File:motion-weather-bmp180.jpg|800px|thumb|center]] <source lang="cpp"> #include <MPU6050.h> // class default I2C address is 0x68 // specific I2C addresses may be passed as a parameter here // AD0 low = 0x68 (default for InvenSense evaluation board) // AD0 high = 0x69 MPU6050 accelgyro; int16_t ax, ay, az; int16_t gx, gy, gz; #define LED_PIN 13 bool blinkState = false; void setup() { // join I2C bus (I2Cdev library doesn't do this automatically) Wire.begin(); // initialize serial communication // (38400 chosen because it works as well at 8MHz as it does at 16MHz, but // it's really up to you depending on your project) Serial.begin(115200); // initialize device Serial.println("Initializing I2C devices..."); accelgyro.initialize(); // verify connection Serial.println("Testing device connections..."); Serial.println(accelgyro.testConnection() ? "MPU6050 connection successful" : "MPU6050 connection failed"); // configure Arduino LED for pinMode(LED_PIN, OUTPUT); } void loop() { // read raw accel/gyro measurements from device accelgyro.getMotion6(&ax, &ay, &az, &gx, &gy, &gz); // these methods (and a few others) are also available //accelgyro.getAcceleration(&ax, &ay, &az); //accelgyro.getRotation(&gx, &gy, &gz); // display tab-separated accel/gyro x/y/z values Serial.print("a/g:\t"); Serial.print(ax); Serial.print("\t"); Serial.print(ay); Serial.print("\t"); Serial.print(az); Serial.print("\t"); Serial.print(gx); Serial.print("\t"); Serial.print(gy); Serial.print("\t"); Serial.println(gz); // blink LED to indicate activity blinkState = !blinkState; digitalWrite(LED_PIN, blinkState); } </source> *将程序下载到核心,打开串口监视器,可以看到数据,前面三个对应的是X,Y,Z的角度,后三个对应的是X,Y,Z的加速度。 <p style="color: #E87E05;font-size:135%">测试BMP180气压传感器</p> *打开'''文件'''->'''示例'''->'''_05_Microduino_10DOF'''->'''sensor_BMP085'''的“BMP085_basic”程序 [[File:motion-weather-bmp180.jpg|800px|thumb|center]] *将程序下载到核心,打开串口监视器,可以看到温度,气压,海拔数据。 [[File:motion-weather-res.jpg|800px|thumb|center]] [[MCookie-Motion/zh|返回MCookie-Motion界面]] [[MCookie-Motion_Reference|返回MCookie-Motion_Reference界面]] |}
返回至
Motion模块姿态测试示例
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
Welcome
首页
创客大赛
大赛详情
3D打印
安装月球车
图形化编程
操控月球车
升级月球车
编程工具下载
软件下载
Arduino
Processing
Mixly
Scratch
模块套件
Microduino 102
mCookie 102
mCookie 202
mCookie 302
IBC
其他
应用套件
四轴飞行器
平衡车
小车CUBE
音乐播放器
刷卡音乐播放器
wifi气象站
彩虹音乐触摸灯
分贝检测仪
迎门汇报
LED点阵时钟
LED点阵屏幕
硬件
mCookie
Sensor
Microduino
MicroWrt
MicroNux
MicroRobot-Core
MicroRobot-CoreESP
ideaBoard
ideaBox
MicroMV
MicroAI
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息