forked from Makuna/NeoPixelBus
Moved Files to hidden folders.
This makes the Include Library only include the two main headers
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
name=NeoPixelBus by Makuna
|
||||
version=2.0.1
|
||||
version=2.0.2
|
||||
author=Michael C. Miller (makuna@live.com)
|
||||
maintainer=Michael C. Miller (makuna@live.com)
|
||||
sentence=A library that makes controlling NeoPixels (WS2811, WS2812 & SK6812) easy.
|
||||
|
@@ -27,7 +27,7 @@ License along with NeoPixel. If not, see
|
||||
#pragma once
|
||||
|
||||
#include <Arduino.h>
|
||||
#include "NeoEase.h"
|
||||
#include "internal/NeoEase.h"
|
||||
|
||||
enum AnimationState
|
||||
{
|
||||
|
@@ -27,20 +27,20 @@ License along with NeoPixel. If not, see
|
||||
|
||||
#include <Arduino.h>
|
||||
|
||||
#include "RgbColor.h"
|
||||
#include "HslColor.h"
|
||||
#include "HsbColor.h"
|
||||
#include "RgbwColor.h"
|
||||
#include "NeoColorFeatures.h"
|
||||
#include "internal/RgbColor.h"
|
||||
#include "internal/HslColor.h"
|
||||
#include "internal/HsbColor.h"
|
||||
#include "internal/RgbwColor.h"
|
||||
#include "internal/NeoColorFeatures.h"
|
||||
|
||||
#if defined(ARDUINO_ARCH_ESP8266)
|
||||
#include "NeoEsp8266DmaMethod.h"
|
||||
#include "NeoEsp8266UartMethod.h"
|
||||
#include "NeoEsp8266BitBangMethod.h"
|
||||
#include "internal/NeoEsp8266DmaMethod.h"
|
||||
#include "internal/NeoEsp8266UartMethod.h"
|
||||
#include "internal/NeoEsp8266BitBangMethod.h"
|
||||
#elif defined(__arm__) // must be before ARDUINO_ARCH_AVR due to Teensy incorrectly having it set
|
||||
#include "NeoArmMethod.h"
|
||||
#include "internal/NeoArmMethod.h"
|
||||
#elif defined(ARDUINO_ARCH_AVR)
|
||||
#include "NeoAvrMethod.h"
|
||||
#include "internal/NeoAvrMethod.h"
|
||||
#else
|
||||
#error "Platform Currently Not Supported, please add an Issue at Github/Makuna/NeoPixelBus"
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user