Skip to content

Commit

Permalink
adjusted colorselect visual (#242)
Browse files Browse the repository at this point in the history
* adjusted colorselect visual
  • Loading branch information
LivingSynthesis authored May 1, 2024
1 parent 4f8aede commit 55caa9d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions VortexEngine/src/Menus/MenuList/ColorSelect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ void ColorSelect::showSelection(ColorSelectState mode)
return;
case STATE_PICK_HUE2:
hue = m_targetHue1 * (255 / 4) + (m_curSelection * (255 / 16));
Leds::setIndex(LED_1, RGB_WHITE0);
// force sat at hue level2
sat = 255;
break;
Expand All @@ -245,7 +244,7 @@ void ColorSelect::showSelection(ColorSelectState mode)
val = vals[m_curSelection];
break;
}
Leds::setMap(MAP_PAIR_EVENS, HSVColor(hue, sat, val));
Leds::setAll(HSVColor(hue, sat, val));
}

void ColorSelect::showFullSet(uint8_t offMs, uint8_t onMs)
Expand Down
Binary file modified VortexEngine/tests/tests_general.tar.gz
Binary file not shown.

0 comments on commit 55caa9d

Please sign in to comment.