WLED/wled00/wled08_led.ino

156 lines
3.5 KiB
Arduino
Raw Normal View History

/*
* LED methods
*/
void setAllLeds() {
double d = bri_t*bri_n;
int val = d/100;
if (val > 255) val = 255;
2017-02-01 19:25:36 +01:00
if (useGammaCorrectionBri)
{
strip.setBrightness(gamma8[val]);
} else {
strip.setBrightness(val);
}
if (useGammaCorrectionRGB)
{
strip.setColor(gamma8[col_t[0]], gamma8[col_t[1]], gamma8[col_t[2]], gamma8[white_t]);
} else {
strip.setColor(col_t[0], col_t[1], col_t[2], white_t);
}
}
void setLedsStandard()
{
col_old[0] = col[0];
col_old[1] = col[1];
col_old[2] = col[2];
white_old = white;
bri_old = bri;
col_t[0] = col[0];
col_t[1] = col[1];
col_t[2] = col[2];
white_t = white;
bri_t = bri;
setAllLeds();
}
void colorUpdated(int callMode)
{
2017-02-21 23:59:47 +01:00
//call for notifier -> 0: init 1: direct change 2: button 3: notification 4: nightlight 5: other (no not.) (NN)6: fx changed
if (col[0] == col_it[0] && col[1] == col_it[1] && col[2] == col_it[2] && white == white_it && bri == bri_it)
{
if (callMode == 6) notify(6);
return; //no change
}
if (callMode != 5 && nightlightActive && nightlightFade)
{
bri_nls = bri;
nightlightDelayMs -= (millis() - nightlightStartTime);
nightlightStartTime = millis();
}
col_it[0] = col[0];
col_it[1] = col[1];
col_it[2] = col[2];
white_it = white;
bri_it = bri;
if (bri > 0) bri_last = bri;
notify(callMode);
if (fadeTransition || sweepTransition)
{
if (transitionActive)
{
col_old[0] = col_t[0];
col_old[1] = col_t[1];
col_old[2] = col_t[2];
white_old = white_t;
bri_old = bri_t;
tper_last = 0;
}
transitionActive = true;
transitionStartTime = millis();
} else
{
setLedsStandard();
}
}
void handleTransitions()
{
if (transitionActive && transitionDelay > 0)
{
float tper = (millis() - transitionStartTime)/(float)transitionDelay;
if (tper >= 1.0)
{
transitionActive = false;
tper_last = 0;
if (sweepTransition) strip.unlockAll();
setLedsStandard();
return;
}
if (tper - tper_last < transitionResolution)
{
return;
}
tper_last = tper;
if (fadeTransition)
{
col_t[0] = col_old[0]+((col[0] - col_old[0])*tper);
col_t[1] = col_old[1]+((col[1] - col_old[1])*tper);
col_t[2] = col_old[2]+((col[2] - col_old[2])*tper);
white_t = white_old +((white - white_old )*tper);
bri_t = bri_old +((bri - bri_old )*tper);
}
if (sweepTransition)
{
strip.lockAll();
if (sweepDirection)
{
strip.unlockRange(0, (int)(tper*(double)ledcount));
} else
{
strip.unlockRange(ledcount - (int)(tper*(double)ledcount), ledcount);
}
if (!fadeTransition)
{
setLedsStandard();
}
}
if (fadeTransition) setAllLeds();
2016-11-27 16:45:54 +01:00
}
}
void handleNightlight()
{
if (nightlightActive)
{
if (!nightlightActive_old) //init
{
nightlightStartTime = millis();
2016-11-27 22:37:51 +01:00
notify(4);
2016-11-27 16:45:54 +01:00
nightlightDelayMs = (int)(nightlightDelayMins*60000);
nightlightActive_old = true;
bri_nls = bri;
2016-11-27 16:45:54 +01:00
}
float nper = (millis() - nightlightStartTime)/((float)nightlightDelayMs);
if (nightlightFade)
{
bri = bri_nls+((bri_nl - bri_nls)*nper);
colorUpdated(5);
}
2016-11-27 16:45:54 +01:00
if (nper >= 1)
{
nightlightActive = false;
if (!nightlightFade)
{
bri = bri_nl;
colorUpdated(5);
}
if (bri == 0) bri_last = bri_nls;
2016-11-27 16:45:54 +01:00
}
} else if (nightlightActive_old) //early de-init
2016-11-27 16:45:54 +01:00
{
nightlightActive_old = false;
}
}