ESP32-PaxCounter/include/bme680read.h

16 lines
332 B
C
Raw Normal View History

#ifndef _HAS_BME
#define _HAS_BME
#include "globals.h"
#include <Wire.h>
#include <Adafruit_Sensor.h>
#include "Adafruit_BME680.h"
2018-11-17 18:30:19 +01:00
extern Adafruit_BME680 bme; // Make bme instance globally availabe
extern bmeStatus_t
bme_status; // Make struct for storing gps data globally available
2018-11-17 18:30:19 +01:00
void bme_init();
bool bme_read();
#endif