Removed Arduino.h header dependency

This commit is contained in:
2021-03-03 15:47:12 +01:00
parent e256389bd7
commit a643dab854
2 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,6 @@ License along with NeoPixel. If not, see
-------------------------------------------------------------------------*/
#pragma once
#include <Arduino.h>
// some platforms do not come with STL or properly defined one, specifically functional
// if you see...
// undefined reference to `std::__throw_bad_function_call()'

View File

@ -25,6 +25,8 @@ License along with NeoPixel. If not, see
-------------------------------------------------------------------------*/
#pragma once
#include <cstdint>
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
};
};