2019-05-07 15:08:22 +00:00
|
|
|
#ifndef __SENS_H__
|
|
|
|
#define __SENS_H__
|
|
|
|
|
|
|
|
#ifdef WITH_BMP180
|
|
|
|
#include "bmp180.h"
|
|
|
|
extern BMP180 Baro; // BMP180 barometer sensor
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WITH_BMP280
|
|
|
|
#include "bmp280.h"
|
|
|
|
extern BMP280 Baro; // BMP280 barometer sensor
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WITH_BME280
|
|
|
|
#include "bme280.h"
|
|
|
|
extern BME280 Baro; // BMP280 barometer sensor with humidity sensor
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WITH_MS5607
|
|
|
|
#include "ms5607.h"
|
2020-04-18 18:05:51 +00:00
|
|
|
extern MS5607 Baro; // MS5607 barometer sensor
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WITH_MS5611
|
|
|
|
#include "ms5611.h"
|
|
|
|
extern MS5611 Baro; // MS5611 barometer sensor
|
2019-05-07 15:08:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2018-02-25 18:47:03 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
#endif
|
|
|
|
void vTaskSENS(void* pvParameters);
|
|
|
|
|
2019-05-07 15:08:22 +00:00
|
|
|
#endif // __SENS_H__
|