Fix wrong CT range when Alexa mode #8694

This commit is contained in:
Stephan Hadinger 2020-06-24 21:41:04 +02:00
parent a55ada039f
commit 4a69bb2a13
1 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,7 @@ class LightStateClass {
_ww = changeUIntScale(w, 0, max, 0, 255);
_wc = changeUIntScale(c, 0, max, 0, 255);
}
_ct = changeUIntScale(w, 0, sum, _ct_min_range, _ct_max_range);
_ct = changeUIntScale(w, 0, sum, CT_MIN, CT_MAX);
addCTMode(); // activate CT mode if needed
if (_color_mode & LCM_CT) { _briCT = free_range ? max : (sum > 255 ? 255 : sum); }
}