Finished multi segment transitions
This commit is contained in:
parent
42a7c84a33
commit
d6b366c77f
@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
### Development versions after 0.11.1 release
|
### Development versions after 0.11.1 release
|
||||||
|
|
||||||
|
#### Build 2101130
|
||||||
|
|
||||||
|
- Added color transitions for all segments and slots and for segment brightness
|
||||||
|
- Fixed bug that prevented setting a boot preset higher than 25
|
||||||
|
|
||||||
#### Build 2101040
|
#### Build 2101040
|
||||||
|
|
||||||
- Replaced Red & Blue effect with Aurora effect (PR #1589)
|
- Replaced Red & Blue effect with Aurora effect (PR #1589)
|
||||||
|
39
wled00/FX.h
39
wled00/FX.h
@ -270,30 +270,31 @@ class WS2812FX {
|
|||||||
void setOpacity(uint8_t o, uint8_t segn) {
|
void setOpacity(uint8_t o, uint8_t segn) {
|
||||||
if (segn >= MAX_NUM_SEGMENTS) return;
|
if (segn >= MAX_NUM_SEGMENTS) return;
|
||||||
if (opacity == o) return;
|
if (opacity == o) return;
|
||||||
ColorTransition::startTransition(o, colors[0], instance->_transitionDur, segn, 0);
|
ColorTransition::startTransition(opacity, colors[0], instance->_transitionDur, segn, 0);
|
||||||
opacity = o;
|
opacity = o;
|
||||||
}
|
}
|
||||||
uint8_t actualOpacity() { //respects On/Off state
|
/*uint8_t actualOpacity() { //respects On/Off state
|
||||||
if (!getOption(SEG_OPTION_ON)) return 0;
|
if (!getOption(SEG_OPTION_ON)) return 0;
|
||||||
return opacity;
|
return opacity;
|
||||||
}
|
}*/
|
||||||
void setOption(uint8_t n, bool val, uint8_t segn = 255)
|
void setOption(uint8_t n, bool val, uint8_t segn = 255)
|
||||||
{
|
{
|
||||||
bool prevOn = false;
|
//bool prevOn = false;
|
||||||
if (n == SEG_OPTION_ON) prevOn = getOption(SEG_OPTION_ON);
|
//if (n == SEG_OPTION_ON) prevOn = getOption(SEG_OPTION_ON);
|
||||||
if (val) {
|
if (val) {
|
||||||
options |= 0x01 << n;
|
options |= 0x01 << n;
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
options &= ~(0x01 << n);
|
options &= ~(0x01 << n);
|
||||||
}
|
}
|
||||||
if (n == SEG_OPTION_ON && segn < MAX_NUM_SEGMENTS && getOption(SEG_OPTION_ON) != prevOn) {
|
//transitions on segment on/off don't work correctly at this point
|
||||||
|
/*if (n == SEG_OPTION_ON && segn < MAX_NUM_SEGMENTS && getOption(SEG_OPTION_ON) != prevOn) {
|
||||||
if (getOption(SEG_OPTION_ON)) {
|
if (getOption(SEG_OPTION_ON)) {
|
||||||
ColorTransition::startTransition(0, colors[0], instance->_transitionDur, segn, 0);
|
ColorTransition::startTransition(0, colors[0], instance->_transitionDur, segn, 0);
|
||||||
} else {
|
} else {
|
||||||
ColorTransition::startTransition(opacity, colors[0], instance->_transitionDur, segn, 0);
|
ColorTransition::startTransition(opacity, colors[0], instance->_transitionDur, segn, 0);
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
bool getOption(uint8_t n)
|
bool getOption(uint8_t n)
|
||||||
{
|
{
|
||||||
@ -384,8 +385,8 @@ class WS2812FX {
|
|||||||
uint8_t segment = 0xFF; //lower 6 bits: the segment this transition is for (255 indicates transition not in use/available) upper 2 bits: color channel
|
uint8_t segment = 0xFF; //lower 6 bits: the segment this transition is for (255 indicates transition not in use/available) upper 2 bits: color channel
|
||||||
uint8_t briOld = 0;
|
uint8_t briOld = 0;
|
||||||
static void startTransition(uint8_t oldBri, uint32_t oldCol, uint16_t dur, uint8_t segn, uint8_t slot) {
|
static void startTransition(uint8_t oldBri, uint32_t oldCol, uint16_t dur, uint8_t segn, uint8_t slot) {
|
||||||
Serial.printf("Starting t: Bri %u Col %u Dur %u Seg %u Slot %u\n", oldBri, oldCol, dur, segn, slot);
|
|
||||||
if (segn >= MAX_NUM_SEGMENTS || slot >= NUM_COLORS || dur == 0) return;
|
if (segn >= MAX_NUM_SEGMENTS || slot >= NUM_COLORS || dur == 0) return;
|
||||||
|
if (instance->_brightness == 0) return; //do not need transitions if master bri is off
|
||||||
uint8_t tIndex = 0xFF; //none found
|
uint8_t tIndex = 0xFF; //none found
|
||||||
uint16_t tProgression = 0;
|
uint16_t tProgression = 0;
|
||||||
uint8_t s = segn + (slot << 6); //merge slot and segment into one byte
|
uint8_t s = segn + (slot << 6); //merge slot and segment into one byte
|
||||||
@ -426,21 +427,21 @@ class WS2812FX {
|
|||||||
t.transitionStart = millis();
|
t.transitionStart = millis();
|
||||||
t.segment = s;
|
t.segment = s;
|
||||||
instance->_segments[segn].setOption(SEG_OPTION_TRANSITIONAL, true);
|
instance->_segments[segn].setOption(SEG_OPTION_TRANSITIONAL, true);
|
||||||
//Serial.printf("S: %u, TNr: %u, St: %u\n", s, tIndex, t.transitionStart);
|
//refresh immediately, required for Solid mode
|
||||||
//instance->transitions[tIndex] = t;
|
if (instance->_segment_runtimes[segn].next_time > t.transitionStart + 22) instance->_segment_runtimes[segn].next_time = t.transitionStart;
|
||||||
}
|
}
|
||||||
uint16_t progress(bool allowEnd = false) { //transition progression between 0-65535
|
uint16_t progress(bool allowEnd = false) { //transition progression between 0-65535
|
||||||
uint32_t timeNow = millis();
|
uint32_t timeNow = millis();
|
||||||
//Serial.printf("ProgressR %u, St: %u, S: %u\n",timeNow - transitionStart, transitionStart, segment);
|
if (timeNow - transitionStart > transitionDur) {
|
||||||
if (timeNow - transitionStart > transitionDur) return 0xFFFF;
|
if (allowEnd) {
|
||||||
uint32_t elapsed = timeNow - transitionStart;
|
|
||||||
uint32_t prog = elapsed * 0xFFFF / transitionDur;
|
|
||||||
//Serial.printf("Progress %u\n",prog);
|
|
||||||
if (prog > 0xFFFF && allowEnd) {
|
|
||||||
uint8_t segn = segment & 0x3F;
|
uint8_t segn = segment & 0x3F;
|
||||||
if (segn < MAX_NUM_SEGMENTS) instance->_segments[segn].setOption(SEG_OPTION_TRANSITIONAL, false);
|
if (segn < MAX_NUM_SEGMENTS) instance->_segments[segn].setOption(SEG_OPTION_TRANSITIONAL, false);
|
||||||
segment = 0xFF;
|
segment = 0xFF;
|
||||||
}
|
}
|
||||||
|
return 0xFFFF;
|
||||||
|
}
|
||||||
|
uint32_t elapsed = timeNow - transitionStart;
|
||||||
|
uint32_t prog = elapsed * 0xFFFF / transitionDur;
|
||||||
return (prog > 0xFFFF) ? 0xFFFF : prog;
|
return (prog > 0xFFFF) ? 0xFFFF : prog;
|
||||||
}
|
}
|
||||||
uint32_t currentColor(uint32_t colorNew) {
|
uint32_t currentColor(uint32_t colorNew) {
|
||||||
@ -449,9 +450,9 @@ class WS2812FX {
|
|||||||
uint8_t currentBri() {
|
uint8_t currentBri() {
|
||||||
uint8_t segn = segment & 0x3F;
|
uint8_t segn = segment & 0x3F;
|
||||||
if (segn >= MAX_NUM_SEGMENTS) return 0;
|
if (segn >= MAX_NUM_SEGMENTS) return 0;
|
||||||
uint8_t briNew = instance->_segments[segn].actualOpacity();
|
uint8_t briNew = instance->_segments[segn].opacity;
|
||||||
uint32_t prog = progress();
|
uint32_t prog = progress() + 1;
|
||||||
return ((briNew * prog) + (briOld * (0xFFFF - prog))) >> 16;
|
return ((briNew * prog) + (briOld * (0x10000 - prog))) >> 16;
|
||||||
}
|
}
|
||||||
} color_transition;
|
} color_transition;
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
|
|||||||
saveCurrPresetCycConf = request->hasArg(F("PC"));
|
saveCurrPresetCycConf = request->hasArg(F("PC"));
|
||||||
turnOnAtBoot = request->hasArg(F("BO"));
|
turnOnAtBoot = request->hasArg(F("BO"));
|
||||||
t = request->arg(F("BP")).toInt();
|
t = request->arg(F("BP")).toInt();
|
||||||
if (t <= 25) bootPreset = t;
|
if (t <= 250) bootPreset = t;
|
||||||
strip.gammaCorrectBri = request->hasArg(F("GB"));
|
strip.gammaCorrectBri = request->hasArg(F("GB"));
|
||||||
strip.gammaCorrectCol = request->hasArg(F("GC"));
|
strip.gammaCorrectCol = request->hasArg(F("GC"));
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// version code in format yymmddb (b = daily build)
|
// version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 2101080
|
#define VERSION 2101130
|
||||||
|
|
||||||
//uncomment this if you have a "my_config.h" file you'd like to use
|
//uncomment this if you have a "my_config.h" file you'd like to use
|
||||||
//#define WLED_USE_MY_CONFIG
|
//#define WLED_USE_MY_CONFIG
|
||||||
|
Loading…
Reference in New Issue
Block a user