7 lines
143 B
C
7 lines
143 B
C
#ifndef BMP280_H
|
|
#define BMP280_H
|
|
#include <stdint.h>
|
|
int bmp280_init(void);
|
|
void bmp280_read(int32_t *pressure_pa, int16_t *temp_x10);
|
|
#endif
|