Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove conditional inclues for Arduino < 1.0
  • Loading branch information
markfickett committed Aug 12, 2014
1 parent e7b876c commit 8bde61d
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 33 deletions.
4 changes: 0 additions & 4 deletions Color.cpp
@@ -1,10 +1,6 @@
#include "Color.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif

#define BITS_PER_CHANNEL 8
#define CHANNEL_MAX 0xFF
Expand Down
4 changes: 0 additions & 4 deletions Interval.cpp
@@ -1,10 +1,6 @@
#include "Interval.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif

#define MILLIS_MAX ~((unsigned long)0)

Expand Down
4 changes: 0 additions & 4 deletions LedPiper.h
Expand Up @@ -5,11 +5,7 @@
#include "Color.h"
#include "LedStrip.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif

LED_CONTROLLER_NAMESPACE_ENTER

Expand Down
4 changes: 0 additions & 4 deletions LedStrip.cpp
@@ -1,10 +1,6 @@
#include "LedStrip.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif

LED_CONTROLLER_NAMESPACE_USING

Expand Down
4 changes: 0 additions & 4 deletions MovingPeak.cpp
@@ -1,11 +1,7 @@
#include "MovingPeak.h"
#include "Config.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif

#define DEFAULT_INTERVAL 10
#define FALLOFF 0.2
Expand Down
5 changes: 0 additions & 5 deletions PatternList.cpp
@@ -1,11 +1,6 @@
#include "PatternList.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#include <newanddelete.h>
#endif

LED_CONTROLLER_NAMESPACE_USING

Expand Down
4 changes: 0 additions & 4 deletions RandomMarquee.cpp
@@ -1,10 +1,6 @@
#include "RandomMarquee.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif

#define DEFAULT_MOVE_INTERVAL 250
#define DEFAULT_BRIGHT_INTERVAL 5
Expand Down
4 changes: 0 additions & 4 deletions StateList.cpp
@@ -1,10 +1,6 @@
#include "StateList.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif

LED_CONTROLLER_NAMESPACE_USING

Expand Down

0 comments on commit 8bde61d

Please sign in to comment.