ESP32-PaxCounter/include/bme680.h

15 lines
267 B
C
Raw Normal View History

2018-11-19 00:41:15 +01:00
#ifndef _BME680_H
#define _BME680_H
#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