-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsensorBME.h
More file actions
31 lines (25 loc) · 702 Bytes
/
sensorBME.h
File metadata and controls
31 lines (25 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// #ifndef _SENSOR_BME_H
// #define _SENSOR_BME_H
// #include <BME280I2C.h>
// #include "kalman.h"
// #include "sensorData.h"
// // extern BME280I2C::Settings bmeSettings;
// class sensorBME {
// public:
// sensorBME();
// // void init(BME280I2C bme);
// atmosphereValues initializeSensors();
// void initSensors();
// atmosphereValues readSensor();
// float readSensorAltitude();
// float readSensorAltitude(atmosphereValues values);
// void sleepSensors();
// void setupSensors();
// private:
// BME280I2C _sensor;
// // BME280_Arduino_I2C _bme;
// int _count;
// kalman _kalmanAltitude;
// kalman _kalmanPressure;
// };
// #endif