Browse Source

bugfix WS2812 immediate color change

titi 5 years ago
parent
commit
69bdf3075d
3 changed files with 7 additions and 5 deletions
  1. 1 1
      Atm_AccelStepper.cpp
  2. 2 2
      Atm_led_TLC.cpp
  3. 4 2
      Atm_led_WS2812.cpp

+ 1 - 1
Atm_AccelStepper.cpp

@@ -154,7 +154,7 @@ void Atm_AccelStepper::action( int id ) {
       stepper_update();
       if(last_trigger == EVT_ON_TARGET){push( connectors, ON_ONTARGET, 0, _currentStep, 0 );};
       push(connectors, ON_CHANGESTATE, 0,  state(), 0);
-      push(connectors, ON_CHANGEPOSITION, 0,  _currentStep, _currentSpeed);
+      push(connectors, ON_CHANGEPOSITION, 0,  stepper->currentPosition(), _currentSpeed);
       enabled = _enableReversed ? LOW : HIGH ;
       //reset limit state so that they trigger again if we're stopped on it
       limitLow_State = 0;

+ 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

+ 4 - 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>
@@ -52,7 +52,9 @@ Atm_led_WS2812& Atm_led_WS2812::setMinMax(int min, int max) {
 Atm_led_WS2812& Atm_led_WS2812::setHueSat(int hue, int sat) {
 	this->color.hue = hue ;
 	this->color.sat = sat ;
+	leds=color ;
+	FastLED.show();
 	return *this;
 }
 
-#endif
+// #endif