Skip to content

Commit

Permalink
Merge pull request #79 from Makuna/HideHeaders
Browse files Browse the repository at this point in the history
Moved Files to hidden folders.
  • Loading branch information
Makuna committed Mar 3, 2016
2 parents d38d06a + 6e3a342 commit 6eba5a9
Show file tree
Hide file tree
Showing 21 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/NeoPixelAnimator.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
20 changes: 10 additions & 10 deletions src/NeoPixelBus.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6eba5a9

Please sign in to comment.