With the BMP180 there was a difference between pressure at sealevel and pressure corrected at the current altitude.
At BME there is only pressure for sealevel and uses this for calculating the Altitude by:
SEALEVELPRESSURE_HPA = bme.readPressure() / 100.0F;
Alt = bme.readAltitude(SEALEVELPRESSURE_HPA);
How do I make a conversion to local pressure?
I suggest by using the Alt somehow?
Beside this I'm using pins 4 and 5 instead of pins 0 and 2 (They are allready in use).
It is be advised to use pull up's. I don't, but it is still working.
Why pull ups still needed?
Please advise