From 9dca828fa2ebfb8df7c45bfc61a61a669a1aa366 Mon Sep 17 00:00:00 2001 From: TD-er Date: Sun, 29 Oct 2023 17:02:29 +0100 Subject: [PATCH] [Build] Add missing include for ESP8266 reading ADC --- src/src/Helpers/Hardware_ADC.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/src/Helpers/Hardware_ADC.cpp b/src/src/Helpers/Hardware_ADC.cpp index b5532a3f4..45133a7b7 100644 --- a/src/src/Helpers/Hardware_ADC.cpp +++ b/src/src/Helpers/Hardware_ADC.cpp @@ -6,6 +6,9 @@ #endif // ifdef ESP32 #ifdef ESP8266 +#include "../Globals/ESPEasyWiFiEvent.h" + + bool Hardware_ADC_t::init() { return true; }