2026-02-28 11:58:23 -05:00

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