ESP32通过wire库i2c无法启动mpu6050问题-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1251|回复: 0

[未解决] ESP32通过wire库i2c无法启动mpu6050问题

[复制链接]
发表于 2022-2-14 11:27 | 显示全部楼层 |阅读模式
在跑大佬的程序的时候发现问题,wie.write在写入mpu6050时返回2,无法正常运行。使用如下程序验证mpu6050是否能正常启动

[pre]#include<Wire.h>

void setup()
{
Serial.begin(115200);//uno时波特率设为9600
Wire.begin(19, 18,400000);//此句uno时删除
}

void loop()
{
Wire.beginTransmission(0x68);
Wire.write(0x6B);
Wire.write(0x00);
Serial.println(Wire.endTransmission(true));
delay(1000);
}[/pre]

使用uno连接时mpu6050时返回0,正常。
使用ESP32连接,返回2。
官方reference中显示如下
[md]*Returns
byte, which indicates the status of the transmission:
0:success
1:data too long to fit in transmit buffer
2:received NACK on transmit of address
3:received NACK on transmit of data
4:other error*[/md]

本人对此知之甚少,出现这种情况的可能原因是什么?望指导,感激不尽。

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 00:56 , Processed in 0.378956 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表