This commit is contained in:
2026-09-11 10:19:50 +02:00
parent 1a11a0db99
commit 1261ad8f2d
17 changed files with 250 additions and 192 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef YGG_BMP280_H
#define YGG_BMP280_H
#include <bmp280.h>
#define I2C_MASTER_SDA 19
#define I2C_MASTER_SCL 23
void ygg_bmp280_init(bmp280_t *dev);
void ygg_bmp280_read_sensor(bmp280_t *dev);
#endif