Browse Source

working led versions

titi 5 years ago
parent
commit
185ab1e744
4 changed files with 39 additions and 13 deletions
  1. 11 5
      Atm_led_TLC.cpp
  2. 2 0
      Atm_led_TLC.h
  3. 19 7
      Atm_led_WS2812.cpp
  4. 7 1
      Atm_led_WS2812.h

+ 11 - 5
Atm_led_TLC.cpp

@@ -20,19 +20,25 @@ void Atm_led_TLC::initLED() {
 }
 
 void Atm_led_TLC::switchOn() {
-	tlc.setPWM(pin, current_level);
+	tlc.setPWM(pin, pwm_max);
 }
 
 void Atm_led_TLC::switchOff() {
-	tlc.setPWM(pin, mapLevel(toLow));
+	tlc.setPWM(pin, pwm_min);
 }
 
 void Atm_led_TLC::setBrightness(int value) {
 
-	tlc.setPWM(pin, mapLevel(value));
+	tlc.setPWM(pin, value);
 }
 
 int Atm_led_TLC::mapLevel(int level) {
-	current_level = map( level, toLow, toHigh, 0, 65535 );
-    return current_level;
+	current_level = map( level, toLow, toHigh, pwm_min, pwm_max );
+    return level;
+}
+
+Atm_led_TLC& Atm_led_TLC::setMinMax(int min, int max) {
+	this->pwm_min = min ;
+	this->pwm_max = max ;
+	return *this;
 }

+ 2 - 0
Atm_led_TLC.h

@@ -14,10 +14,12 @@
 class Atm_led_TLC: public Atm_led {
 public:
 	Atm_led_TLC(Adafruit_TLC59711& _tlc);
+	Atm_led_TLC& setMinMax(int min, int max);
 
 private:
 	Adafruit_TLC59711& tlc;
 	int current_level;
+	int pwm_min, pwm_max = 65535 ;
 
 protected:
 	virtual void initLED();

+ 19 - 7
Atm_led_WS2812.cpp

@@ -21,22 +21,34 @@ void Atm_led_WS2812::initLED() {
 }
 
 void Atm_led_WS2812::switchOn() {
-	leds = CRGB( 0, 255, 255);
-	// leds[pin].r = 255;
-	// leds[pin].g = 255;
-	// leds[pin].b = 255;
+	color.val = pwm_max ;
+	leds = color ;
 	FastLED.show() ;
 }
 
 void Atm_led_WS2812::switchOff() {
-	leds = CRGB::Black ;
+	color.val = pwm_min ;
+	leds = color ;
 	FastLED.show() ;
 }
 
-void Atm_led_WS2812::setBrightness(int r, int g, int b) {
-	leds = CRGB( 50, 100, 150);
+void Atm_led_WS2812::setBrightness(int value) {
+	color.val = value ;
+	leds = color ;
 	// leds[pin].r = r;
 	// leds[pin].g = g;
 	// leds[pin].b = b;
 	FastLED.show() ;
 }
+
+Atm_led_WS2812& Atm_led_WS2812::setMinMax(int min, int max) {
+	this->pwm_min = min ;
+	this->pwm_max = max ;
+	return *this;
+}
+
+Atm_led_WS2812& Atm_led_WS2812::setHueSat(int hue, int sat) {
+	this->color.hue = hue ;
+	this->color.sat = sat ;
+	return *this;
+}

+ 7 - 1
Atm_led_WS2812.h

@@ -14,15 +14,21 @@
 class Atm_led_WS2812: public Atm_led {
 public:
 	Atm_led_WS2812(CRGB& _leds );
+	Atm_led_WS2812& setMinMax(int min, int max);
+	Atm_led_WS2812& setHueSat(int hue, int sat);
+
 
 private:
 	CRGB& leds;
+	int current_level;
+	int pwm_min, pwm_max = 65535 ;
+	CHSV color ;
 
 protected:
 	virtual void initLED();
 	virtual void switchOn();
 	virtual void switchOff();
-  virtual void setBrightness(int r, int g, int b);
+  virtual void setBrightness(int value);
 };
 
 #endif /* SRC_ATM_LED_MCP_H_ */