From a6281c558155643c136d3b0506861c2f60862454 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Mon, 27 Nov 2023 23:32:13 +0100 Subject: [PATCH] BME680: remove uneeded includes --- WifiControlSensor/BME680.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/WifiControlSensor/BME680.h b/WifiControlSensor/BME680.h index 833121e..73eb213 100644 --- a/WifiControlSensor/BME680.h +++ b/WifiControlSensor/BME680.h @@ -14,8 +14,6 @@ //Use Default i2c pin GPIO4(D2): SDA, GPIO5(D1):SCL #define SEALEVELPRESSURE_HPA (1013.25) -#include -#include "debug_sketch.h" int BME680GetMeasure(float &t, float &p, float &h, float &g, float &a); int BME680Setup();