0

有人使用过 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 传感器之间进行了通信,没有任何问题。

4

1 回答 1

1

您的问题可能是由于飞思卡尔部件需要重复启动 I2C 通信才能进行读取。原来的 Arduino 两线库(Wire 使用的 TWI 库),不支持重复启动。

我知道这一点是因为我必须为我的一个项目重写 TWI 以支持重复启动(中断驱动,主从驱动)。不幸的是,我从来没有上传过我的代码,但是其他人在这里做了同样的事情(至少对于 Master,这是你需要的): http ://dsscircuits.com/articles/arduino-i2c-master-library .html

丢掉 Wire 库,改用他们的 I2C 库。

于 2012-11-15T21:55:29.323 回答