有人使用过 MPL3115A2 飞思卡尔 I2C 压力传感器吗?我需要在有关 Arduino UNO r3 的项目中使用它,但我无法正确地在它们之间进行通信。这是我的代码:
#include <Wire.h>
void setup(){
Serial.begin(9600);
/*Start communication */
Wire.begin();
// Put sensor as in Standby mode
Wire.beginTransmission((byte)0x60); //0x60 is sensor address
Wire.write((byte)0x26); //ctrl_reg
Wire.write((byte)0x00); //reset_reg
Wire.endTransmission();
delay(10);
// start sensor as Barometer Active
Wire.beginTransmission((byte)0x60);
Wire.write((byte)0x26); //ctrl_reg
Wire.write((byte)0x01); //start sensor as barometer
Wire.endTransmission();
delay(10);
}
void getdata(byte *a, byte *b, byte *c){
Wire.beginTransmission(0x60);
Wire.write((byte)0x01); // Data_PMSB_reg address
Wire.endTransmission(); //Stop transmission
Wire.requestFrom(0x60, 3); // "please send me the contents of your first three registers"
while(Wire.available()==0);
*a = Wire.read(); // first received byte stored here
*b = Wire.read(); // second received byte stored here
*c = Wire.read(); // third received byte stored here
}
void loop(){
byte aa,bb,cc;
getdata(&aa,&bb,&cc);
Serial.println(aa,HEX); //print aa for example
Serial.println(bb,HEX); //print bb for example
Serial.println(cc,HEX); //print cc for example
delay(5000);
}
我收到的数据是:05FB9(例如)。当我更改寄存器地址(参见 参考资料Wire.write((byte)0x01); // Data_PMSB_reg address
)时,我希望数据会发生变化,但事实并非如此!你能给我解释一下吗?您可以在 NXP 网站上找到文档和数据表。
我无法正确理解他们如何相互交流。我在 Arduino 和其他一些具有相同通信协议的 I2C 传感器之间进行了通信,没有任何问题。