I am working with this sensor P1J rev E (sensata.com), and I am trying to use the i2c communication. I understand I need to have the register of the ID device and also the registers where the information is. However, I cannot see the register clearly (sorry, this is my first working with this protocol) , has someone used this sensor before? i will appreciate any recommendation and information from your side.
void loop(){
Wire.requestFrom(i2caddress ,2); (this is basically the registers where the pressure is)
byte *LSB = Wire.read(); //first byte received here
byte *MSB = Wire.read(); //second byte received here