Browse Source

re-added #ifdef conditions on compilation

compile only needed parts
titi 5 years ago
parent
commit
49a5855f60
3 changed files with 6 additions and 6 deletions
  1. 2 2
      Atm_encoderInt.cpp
  2. 2 2
      Atm_led_TLC.cpp
  3. 2 2
      Atm_led_WS2812.cpp

+ 2 - 2
Atm_encoderInt.cpp

@@ -1,5 +1,5 @@
 
-//#ifdef Encoder_h_
+#ifdef Encoder_h_
 
 #include "Atm_encoderInt.h"
 #include <limits.h>
@@ -170,4 +170,4 @@ Atm_encoderInt& Atm_encoderInt::trace( Stream& stream ) {
   return *this;
 }
 
-//#endif
+#endif

+ 2 - 2
Atm_led_TLC.cpp

@@ -5,7 +5,7 @@
  *      Author: ian
  */
 
-// #ifdef _ADAFRUIT_TLC59711_H
+#ifdef _ADAFRUIT_TLC59711_H
 
 #include <Atm_led_TLC.h>
 #include <Atm_led.hpp>
@@ -45,4 +45,4 @@ Atm_led_TLC& Atm_led_TLC::setMinMax(int min, int max) {
 	return *this;
 }
 
-// #endif
+#endif

+ 2 - 2
Atm_led_WS2812.cpp

@@ -5,7 +5,7 @@
  *      Author: ian
  */
 
-// #ifdef FASTLED_INTERNAL
+ #ifdef FASTLED_INTERNAL
 
 #include <Atm_led_WS2812.h>
 #include <Atm_led.hpp>
@@ -57,4 +57,4 @@ Atm_led_WS2812& Atm_led_WS2812::setHueSat(int hue, int sat) {
 	return *this;
 }
 
-// #endif
+ #endif