mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-23 01:00:15 +01:00
18 lines
320 B
C++
18 lines
320 B
C++
#ifndef BME_UTILS_H_
|
|
#define BME_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
#include <Adafruit_Sensor.h>
|
|
#include <Adafruit_BME280.h>
|
|
|
|
namespace BME_Utils {
|
|
|
|
void setup();
|
|
String generateTempString(float bmeTemp);
|
|
String generateHumString(float bmeHum);
|
|
String generatePresString(float bmePress);
|
|
String readDataSensor();
|
|
|
|
}
|
|
|
|
#endif |