according to the datasheet, you need to write to address 6 before you start reading the pressure and temperature data
- Wire.beginTransmission(Addr)
2.Wire.write(0x06)
3.Wire.endTransission(false) // does not send a STOP
4.Wire.requestFrom(Addr, 5) // restart and read 5 data bytes