First Commit
[owSlave2.git] / common / I2C / BMP280.h
1 #ifndef BMP280_H
2 #define BMP280_H
3
4
5
6 void bmp280Init(void);
7 int32_t bmp280ReadTemp(void);
8 int32_t bmp280ReadPressure(uint8_t oss);
9 void bmp280Convert(double * temperature, double * pressure,uint8_t oss);
10 void bmp280ConvertInt(int32_t * temperature,uint32_t *pressure,uint8_t oss);
11
12
13 #endif