From fd6aba8c517201bfcfe212fa8f9a38a2e0b97025 Mon Sep 17 00:00:00 2001 From: Luke Pitt Date: Fri, 27 May 2022 16:26:52 +0100 Subject: [PATCH] Include Arduino.h to fix compiler warnings --- src/BME280.cpp | 1 + src/BME280I2C.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/BME280.cpp b/src/BME280.cpp index b901d3f..b9c096f 100644 --- a/src/BME280.cpp +++ b/src/BME280.cpp @@ -28,6 +28,7 @@ of www.endmemo.com, altitude equation courtesy of NOAA, and dew point equation courtesy of Brian McNoldy at http://andrew.rsmas.miami.edu. */ +#include #include #include "BME280.h" diff --git a/src/BME280I2C.cpp b/src/BME280I2C.cpp index 242127b..27e66f8 100644 --- a/src/BME280I2C.cpp +++ b/src/BME280I2C.cpp @@ -28,6 +28,7 @@ of www.endmemo.com, altitude equation courtesy of NOAA, and dew point equation courtesy of Brian McNoldy at http://andrew.rsmas.miami.edu. */ +#include #include #include "BME280I2C.h"