From a643dab854f28b7d3c79a0560838445debb9e8e4 Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 Date: Wed, 3 Mar 2021 15:47:12 +0100 Subject: [PATCH] Removed Arduino.h header dependency --- src/NeoPixelBus.h | 2 -- src/internal/NeoSettings.h | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NeoPixelBus.h b/src/NeoPixelBus.h index 2c82079..abba615 100644 --- a/src/NeoPixelBus.h +++ b/src/NeoPixelBus.h @@ -25,8 +25,6 @@ License along with NeoPixel. If not, see -------------------------------------------------------------------------*/ #pragma once -#include - // some platforms do not come with STL or properly defined one, specifically functional // if you see... // undefined reference to `std::__throw_bad_function_call()' diff --git a/src/internal/NeoSettings.h b/src/internal/NeoSettings.h index 1af9f82..e12953f 100644 --- a/src/internal/NeoSettings.h +++ b/src/internal/NeoSettings.h @@ -25,6 +25,8 @@ License along with NeoPixel. If not, see -------------------------------------------------------------------------*/ #pragma once +#include + class NeoNoSettings { }; @@ -59,4 +61,4 @@ public: uint16_t GreenTenthMilliAmpere; // in 1/10th ma uint16_t BlueTenthMilliAmpere; // in 1/10th ma uint16_t WhiteCurrent; // in 1/10th ma -}; \ No newline at end of file +};