2018-11-14 22:11:23 +01:00
|
|
|
#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();
|
2018-11-14 22:11:23 +01:00
|
|
|
|
|
|
|
#endif
|