Bugfix sync with hyperion repo (#110)

* #702  if led color not black

* colorless backlight #707
This commit is contained in:
brindosch
2016-07-12 23:33:30 +02:00
committed by GitHub
parent 48d20529d3
commit 1cf7fd545e
2 changed files with 4 additions and 4 deletions

View File

@@ -67,7 +67,7 @@ void HslTransform::transform(uint8_t & red, uint8_t & green, uint8_t & blue) con
float l = luminance * _luminanceGain;
if (l < _luminanceMinimum)
{
saturation *= l/_luminanceMinimum;
saturation = 0;
l = _luminanceMinimum;
}
if (l > 1.0f)