#ifndef BME_UTILS_H_ #define BME_UTILS_H_ #include #include //#define BMPSensor // uncoment this line if BMP280 Module is connected instead of BME280 #ifndef BMPSensor #include #else #include #endif namespace BME_Utils { void setup(); String generateTempString(float bmeTemp, String type); String generateHumString(float bmeHum, String type); String generatePresString(float bmePress, String type); String readDataSensor(String type); } #endif