I’m having problems when retrieving pressure data from a SparkFun Pressure Sensor Breakout - MS5803-14BA on a seeed LinkIt ONE arduino-like module.
I double-checked the wiring and everything is ok, I’m using an I2C connection. I tried using the 2 libraries from sparkfun git repositories
https://github.com/sparkfun/MS5803-14BA_Breakout
https://github.com/sparkfun/SparkFun_MS … no_Library
And both examples freeze on the 51st line, “sensor.reset();” if I comment this line, it freezes on 52nd line, “sensor.begin();”
But if i use this library from millerlp, https://github.com/millerlp/MS5803_14 it reads pressure and temperature data, but it gives me weird values:
Pressure = 1195.30 mbar
Temperature = 207.00C
Altough the pressure is valid, the temperature clearly isn’t, and If I put the sensor on a pressurized bottle, the pressure value won’t change even with 2000 mbar pressure.
Thanks in advance.