登录
首页 » c,c++ » mpu6050 陀螺仪+TFT显示器

mpu6050 陀螺仪+TFT显示器

于 2022-08-19 发布 文件大小:2.12 MB
0 35
下载积分: 2 下载次数: 1

代码说明:

适用于STM32F410RB  Nucleo的话可以直接把TFT1.8 的屏幕插在 右上方的adruino的口上, A0,A1是IIC的 SDA和SCL。 滤波采用互补滤波。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • c#语言编的贪吃蛇游戏,初学者学习的好资料.
    c#语言编的贪吃蛇游戏,初学者学习的好资料.-c# language compiled Snake game, good for beginners to learn the information.
    2022-10-20 17:00:04下载
    积分:1
  • 这是模拟三个进程如何在系统的调度下运行的,其结果存放在jc.c文件中,可便初学都对进程的运行有更深该的认识。...
    这是模拟三个进程如何在系统的调度下运行的,其结果存放在jc.c文件中,可便初学都对进程的运行有更深该的认识。-This is how the simulation process in three Scheduling System running, and its findings jc.c stored in a document, then the process of learning all of the operations have a better understanding.
    2022-07-07 09:45:51下载
    积分:1
  • 藏字诗生成
    单身狗表白福利,只需要输入您想说的话,软件会自动生成古诗词,将您想说话藏在古诗词之中,送给你心仪的对象。
    2022-05-24 22:37:33下载
    积分:1
  • 用摄像头来测距的电子教程以及源码
    用摄像头来测距的电子教程以及源码,双目测距,源码简单通俗易懂,适合新手。。vs2010环境,欢迎下载。。。 用摄像头来测距的电子教程以及源码,双目测距,源码简单通俗易懂,适合新手。。vs2010环境,欢迎下载。。。
    2022-03-13 23:54:20下载
    积分:1
  • C# 软件注册+注册机+写注册表 源码下载
    为c# 软件添加注册功能,通过注册机和写入注册表方式
    2016-08-04下载
    积分:1
  • JQuery1.8.3 js+min.js+中文CHM
    JQuery1.8.3 js+min.js+中文CHM
    2013-12-30下载
    积分:1
  • Rafeal驱动包
    Rafeal公司新一代芯片驱动程序包,RT710是一款低功耗、高性能、高集成度、小体积的卫星调谐器芯片。此驱动包中完整实现了I2C接口、封装相关寄存器操作。
    2022-01-24 18:44:59下载
    积分:1
  • 关于概率的与胜率的推倒关系
    通过输入本金和每次额度和概率和目标值,推倒出每次的胜率,归0率。
    2022-07-16 17:01:33下载
    积分:1
  • C# ASP.NET - Lucene.Net实现搜索引擎
    使用Lucene.NET技术实现搜索引擎范例;使用到的DLL插件包括:DictSeg.dll - 1.0.1.0FredCK.FCKeditorV2.dll - 2.6.3.22451FreeTextBox.dll - 3.3.1.12354FTAlgorithm.dll - 1.0.1.0Lucene.Net.dll - 1.9.1.4本资料共包含以下附件:SearchEngine.7z
    2022-07-08 21:49:53下载
    积分:1
  • C# 实现 MD5加密解密算法
    using System.Security.Cryptography;using    System.IO;  using    System.Text; ///MD5加密  public string MD5Encrypt(string    pToEncrypt,  string    sKey)    {       DESCryptoServiceProvider    des  =  new    DESCryptoServiceProvider();     byte[]    inputByteArray  =    Encoding.Default.GetBytes(pToEncrypt);       des.Key  =    ASCIIEncoding.ASCII.GetBytes(sKey);       des.IV  =    ASCIIEncoding.ASCII.GetBytes(sKey);       MemoryStream    ms  =  new    MemoryStream();       CryptoStream    cs  =  new    CryptoStream(ms,    des.CreateEncryptor(),CryptoStreamMode.Write);       cs.Write(inputByteArray,  0,    inputByteArray.Length);       cs.FlushFinalBlock();       StringBuilder    ret  =  new    StringBuilder();     foreach(byte    b  in    ms.ToArray())       {        ret.AppendFormat("{0:X2}",    b);       }       ret.ToString();     return    ret.ToString();      }  ///MD5解密  public string MD5Decrypt(string    pToDecrypt,  string    sKey)    {      DESCryptoServiceProvider    des  =  new    DESCryptoServiceProvider();     byte[]    inputByteArray  =  new  byte[pToDecrypt.Length  /  2];     for(int    x  =  0;    x  <    pToDecrypt.Length  /  2;    x )       {      int    i  =    (Convert.ToInt32(pToDecrypt.Substring(x  *  2,  2),  16));        inputByteArray[x]  =    (byte)i;       }       des.Key  =    ASCIIEncoding.ASCII.GetBytes(sKey);       des.IV  =    ASCIIEncoding.ASCII.GetBytes(sKey);       MemoryStream    ms  =  new    MemoryStream();       CryptoStream    cs  =  new    CryptoStream(ms,    des.CreateDecryptor(),CryptoStreamMode.Write);       cs.Write(inputByteArray,  0,    inputByteArray.Length);       cs.FlushFinalBlock();       StringBuilder    ret  =  new    StringBuilder();                  return    System.Text.Encoding.Default.GetString(ms.ToArray());      }
    2013-11-13下载
    积分:1
  • 696518资源总数
  • 104224会员总数
  • 54今日下载