This commit is contained in:
2025-04-04 04:48:13 +02:00
commit 2790bfa772
50 changed files with 6158 additions and 0 deletions

13
main/hw/bme680b.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef BME680_COMPONENT
#define BME680_COMPONENT
#include <bme680.h>
#include "i2cbrn.h"
#define TAG_BME "BME680"
extern bme680_config_t BME680_DEV_CFG;
extern bme680_handle_t BME680_DEV_HANDLE;
void bme680_print_registers(bme680_handle_t handle);
void bme680b_init();
#endif