Moved Files to hidden folders.

This makes the Include Library only include the two main headers
This commit is contained in:
Makuna
2016-03-03 14:38:35 -08:00
parent d38d06acba
commit 6e3a3427a0
21 changed files with 12 additions and 12 deletions

View File

@@ -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.

View File

@@ -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
{

View File

@@ -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