Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjusted colorselect visual #242

Merged
merged 4 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.