我正在尝试将mpu6050与nodemcu连接如下:
<input type="text" name="username" placeholder="username"/>
<input type="password" name="password" placeholder="password"/>
但它没有检测到传感器 传感器与Arduino连接
Vcc - 3v
Gnd - gnd
Sda - D2
Scl - D1
我尝试的代码是附加的Arduino示例代码 nodemcu中的Wire.begin(D2,D1)
答案 0 :(得分:0)
我导入了这个库 https://github.com/jrowberg/i2cdevlib/tree/master/Arduino/MPU6050 并使用布线运行示例代码 Vcc - 3v Gnd - gnd Sda - D2 Scl - D1 而不是写Wire.begin(D2,D1),我写了Wire.begin(),它工作。