优秀个人和团体篇

一、个人

1. JakeWharton 就职于Square
Github地址:https://github.com/JakeWharton
代表作:ActionBarSherlockAndroid-ViewPagerIndicatorNine Old AndroidsSwipeToDismissNOAhugobutterknifeAndroid-DirectionalViewPager
pidcat另外对square及其他开源项目有很多贡献
博客:http://jakewharton.com/
绝对牛逼的大神,项目主要集中在Android版本兼容,ViewPager及开发工具上.

 

2. Chris Banes
Github地址:https://github.com/chrisbanes
代表作:ActionBar-PullToRefreshPhotoViewAndroid-BitmapCacheAndroid-PullToRefresh
博客:http://chris.banes.me/

 

3. Koushik Dutta就职于ClockworkMod
Github地址:https://github.com/koush
代表作:SuperuserAndroidAsyncUrlImageViewHelperion, 另外对https://github.com/CyanogenMod的开源项目有很多贡献

博客:http://koush.com/

 

4. Simon Vig
Github地址:https://github.com/SimonVT
代表作:android-menudrawerMessageBar

博客:http://simonvt.net/

 

5. Manuel Peinado
Github地址:https://github.com/ManuelPeinado
代表作:FadingActionBarGlassActionBarRefreshActionItemQuickReturnHeader

 

6. Emil Sjölander
Github地址:https://github.com/emilsjolander
代表作:StickyListHeaderssprinklesandroid-FlipView

博客:http://emilsjolander.se/

 

7. greenrobot
Github地址:https://github.com/greenrobot
代表作:greenDAOEventBus
网址:http://greenrobot.de/

 

8. Jeff Gilfelt

Github地址:https://github.com/jgilfelt
代表作:android-mapviewballoonsandroid-viewbadgerandroid-actionbarstylegeneratorandroid-sqlite-asset-helper
网址:http://jeffgilfelt.com

 

Ps: ViewServer作者的个人摄影作品http://www.flickr.com/photos/romainguy,感觉超赞

 

二、组织
1. Square:

Github地址:https://github.com/square 
代表作:okhttpfest-androidandroid-times-squarepicassodaggerspoon等等
网址:http://square.github.io/

有态度有良心的企业,很多不错的分享

 

2. Inmite s.r.o.
Github地址:https://github.com/inmite
代表作:android-styled-dialogsandroid-grid-wichterleandroid-selector-chapek
网址:http://www.inmite.eu/

MPU6050是一款广泛应用在惯性测量单元(IMU)中的微型传感器,由InvenSense公司生产。它集成了三轴加速度计三轴陀螺仪,能够检测设备在三维空间中的线性加速度角速度,进而计算出物体的姿态、运动方向。在本项目中,MPU6050被用来获取设备的YAW、PITCH、ROLL这三个关键的姿态角,这些数据将通过OLED显示屏进行实时显示。 1. **MPU6050工作原理**: MPU6050内部包含两个主要传感器:加速度计用于测量重力加速度,提供X、Y、Z三个轴的线性加速度信息;陀螺仪则测量绕三个轴的旋转速率。通过融合这两个传感器的数据,可以计算出设备的动态运动状态。 2. **姿态角的定义**: - **YAW(偏航角)**:表示设备相对于一个参考方向的旋转角度,通常以水平面为基准。 - **PITCH(俯仰角)**:是设备沿垂直轴相对于水平面的倾斜角度,向上为正,向下为负。 - **ROLL(翻滚角)**:是设备围绕前向轴的旋转角度,向右为正,向左为负。 3. **数据处理与姿态解算**: 为了从原始的加速度角速度数据中获取准确的姿态角,需要应用卡尔曼滤波、互补滤波或者Madgwick算法等高级数据融合方法。这些算法可以有效地消除噪声,提高姿态估计的稳定性精度。 4. **OLED显示屏**: OLED(有机发光二极管)显示器是一种自发光技术,具有高对比度、快速响应时间以及广视角的优点。在该项目中,OLED用于实时显示YAW、PITCH、ROLL角,为用户提供了直观的视觉反馈。 5. **硬件连接与编程**: 实现这一功能需要将MPU6050通过I2C或SPI接口连接到微控制器(如Arduino、Raspberry Pi等)。编写相应的固件程序来读取传感器数据,并将其转换为姿态角,然后将结果显示在OLED屏幕上。 6. **软件实现**: 在编程过程中,通常会用到相关的库文件,如Arduino IDE中的Wire库来处理I2C通信,Adafruit的MPU6050库来与传感器交互,以及Adafruit_GFXAdafruit_SSD1306库来驱动OLED屏幕。 7. **调试与优化**: 项目实施过程中可能遇到的问题包括传感器漂移、数据不准确等,可以通过调整滤波器参数、校准传感器以及优化算法来改善。 综上,"MPU6050(OLED显示姿态角)"项目涉及了传感器技术、微控制器编程、数据融合算法、嵌入式显示等多个领域的知识,对于学习实践物联网、机器人、无人机等领域的开发者来说,是一个很好的动手实践项目。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值