资源简介
自平衡小车arduino主控+mpu6050+卡尔曼滤波+PID
代码片段和文件信息
// I2Cdev library collection - Main I2C device class
// Abstracts bit and byte I2C R/W functions into a convenient class
// 6/9/2012 by Jeff Rowberg
//
// Changelog:
// 2013-05-05 - fix issue with writing bit values to words (Sasquatch/Farzanegan)
// 2012-06-09 - fix major issue with reading > 32 bytes at a time with Arduino Wire
// - add compiler warnings when using outdated or IDE or limited I2Cdev implementation
// 2011-11-01 - fix write*Bits mask calculation (thanks sasquatch @ Arduino forums)
// 2011-10-03 - added automatic Arduino version detection for ease of use
// 2011-10-02 - added Gene Knight‘s NBWire TwoWire class implementation with small modifications
// 2011-08-31 - added support for Arduino 1.0 Wire library (methods are different from 0.x)
// 2011-08-03 - added optional timeout parameter to read* methods to easily change from default
// 2011-08-02 - added support for 16-bit registers
// - fixed incorrect Doxygen comments on some methods
// - added timeout value for read operations (thanks mem @ Arduino forums)
// 2011-07-30 - changed read/write function structures to return success or byte counts
// - made all methods static for multi-device memory savings
// 2011-07-28 - initial release
/* ============================================
I2Cdev device library code is placed under the MIT license
Copyright (c) 2012 Jeff Rowberg
Permission is hereby granted free of charge to any person obtaining a copy
of this software and associated documentation files (the “Software“) to deal
in the Software without restriction including without limitation the rights
to use copy modify merge publish distribute sublicense and/or sell
copies of the Software and to permit persons to whom the Software is
furnished to do so subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS“ WITHOUT WARRANTY OF ANY KIND EXPRESS OR
IMPLIED INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER
LIABILITY WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING FROM
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
===============================================
*/
#include “I2Cdev.h“
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
#ifdef I2CDEV_IMPLEMENTATION_WARNINGS
#if ARDUINO < 100
#warning Using outdated Arduino IDE with Wire library is functionally limiting.
#warning Arduino IDE v1.0.1+ with I2Cdev Fastwire implementation is recommended.
#warning This I2Cdev implementation does not support:
#warning - Repeated starts conditions
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-02-02 23:16 zipinghengxiaoche\
目录 0 2014-02-02 23:15 zipinghengxiaoche\I2Cdev\
文件 54665 2013-08-20 08:16 zipinghengxiaoche\I2Cdev\I2Cdev.cpp
文件 11914 2013-08-20 08:16 zipinghengxiaoche\I2Cdev\I2Cdev.h
文件 859 2013-08-20 08:16 zipinghengxiaoche\I2Cdev\keywords.txt
目录 0 2014-02-02 23:15 zipinghengxiaoche\MPU6050\
文件 126508 2013-08-20 08:16 zipinghengxiaoche\MPU6050\MPU6050.cpp
文件 42526 2013-08-20 08:16 zipinghengxiaoche\MPU6050\MPU6050.h
文件 38962 2013-08-20 08:16 zipinghengxiaoche\MPU6050\MPU6050_6Axis_MotionApps20.h
文件 46548 2013-08-20 08:16 zipinghengxiaoche\MPU6050\MPU6050_9Axis_MotionApps41.h
目录 0 2014-02-02 23:15 zipinghengxiaoche\MPU6050\examples\
目录 0 2014-02-02 23:15 zipinghengxiaoche\MPU6050\examples\MPU6050_DMP6\
文件 15199 2013-08-20 08:16 zipinghengxiaoche\MPU6050\examples\MPU6050_DMP6\MPU6050_DMP6.ino
目录 0 2014-02-02 23:15 zipinghengxiaoche\MPU6050\examples\MPU6050_DMP6\Processing\
文件 9731 2013-08-20 08:16 zipinghengxiaoche\MPU6050\examples\MPU6050_DMP6\Processing\MPUTeapot.pde
目录 0 2014-02-02 23:15 zipinghengxiaoche\MPU6050\examples\MPU6050_raw\
文件 3438 2013-08-20 08:16 zipinghengxiaoche\MPU6050\examples\MPU6050_raw\MPU6050_raw.ino
文件 6413 2013-08-20 08:16 zipinghengxiaoche\MPU6050\helper_3dmath.h
目录 0 2014-02-02 23:15 zipinghengxiaoche\PID_v1\
目录 0 2014-02-02 23:15 zipinghengxiaoche\PID_v1\Examples\
目录 0 2014-02-02 23:15 zipinghengxiaoche\PID_v1\Examples\PID_AdaptiveTunings\
文件 1468 2012-12-02 06:51 zipinghengxiaoche\PID_v1\Examples\PID_AdaptiveTunings\PID_AdaptiveTunings.ino
目录 0 2014-02-02 23:15 zipinghengxiaoche\PID_v1\Examples\PID_Basic\
文件 638 2012-12-02 06:51 zipinghengxiaoche\PID_v1\Examples\PID_Basic\PID_Basic.ino
目录 0 2014-02-02 23:15 zipinghengxiaoche\PID_v1\Examples\PID_RelayOutput\
文件 1743 2012-12-02 06:51 zipinghengxiaoche\PID_v1\Examples\PID_RelayOutput\PID_RelayOutput.ino
文件 6918 2012-12-02 06:51 zipinghengxiaoche\PID_v1\PID_v1.cpp
文件 3454 2012-12-02 06:51 zipinghengxiaoche\PID_v1\PID_v1.h
文件 743 2012-12-02 06:51 zipinghengxiaoche\PID_v1\keywords.txt
目录 0 2014-02-02 23:15 zipinghengxiaoche\TimerOne_v9\
文件 8039 2011-11-14 11:46 zipinghengxiaoche\TimerOne_v9\TimerOne.cpp
............此处省略6个文件信息
- 上一篇:2d simple cfd c代码
- 下一篇:非常好用的模糊PID温度控制算法
相关资源
- HMC5883L的Arduino库
-
DFPla
yer_Mini_mp3 arduino 库文件 - arduino avrdude 5.11.1 for Windows with JesseJ
- Qt_USB_I2C_MPU6050.rar
- Arduino I2Cdev库
- mpu6050卡尔曼滤波器程序
- arduino鼠标点击绝对坐标
- 74LS47驱动7段数码管实验
- usbser.sys和mdmcpq.PNF和mdmcpq.inf还有另一
- 自动计算mpu6050的偏移量MPU6050_calibra
- XLoader hex文件
- arduino-uno-r3 电路图
- 颜色传感器ARDUINO代码
- PS2手柄 - arduino版本例程
- RFID.h RC522
- MPU6050 DMP官方手册中文翻译版
- 适合初学者借鉴的arduino智能小车代码
- arduino uno 控制二自由度舵机云台
- 51单片机 MPU6050读取并通过串口输出
- 移动onenet 基于arduino IDE 的mqtt连接
- arduino平台下CC2520 zigbee模块的驱动
- ArduinoLED矩阵代码
- Arduino 平衡小车
- LiquidCrystal_I2C驱动Arduino IDE 1.0以上版本
- arduino1602屏幕滚动显示
- PMS5003T Arduino Uno
- Arduino_PS2X库文件
- arduino与Unity串口通讯.docx
- arduino new ping
- 基于51单片机的计步手环
评论
共有 条评论