ESP32-PaxCounter/include/bme680read.h

15 lines
265 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"
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