From 892c2d2112e7537ba1c913e562bcdfae7848adf3 Mon Sep 17 00:00:00 2001 From: Jochen Vothknecht <jochen3120@gmail.com> Date: Wed, 16 Feb 2022 05:49:56 +0100 Subject: [PATCH] Fix missing import --- CLC-qthing/CyanLight.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CLC-qthing/CyanLight.cpp b/CLC-qthing/CyanLight.cpp index 351d0c9..3a00219 100644 --- a/CLC-qthing/CyanLight.cpp +++ b/CLC-qthing/CyanLight.cpp @@ -1,7 +1,11 @@ #include "CyanLight.hpp" +// C++ system level #include <cstdlib> // TODO: was this for std::min() ? +// ESP32 specific +#include "esp_log.h" + uint8_t MAX_CHANNELS = 8; -- GitLab