Akemi bugfix for panel width > 32

due to a math accident, Akemi did not show proper GEQ bands in its hands when width>32
pull/4175/head
Frank 2024-09-30 17:44:38 +02:00 zatwierdzone przez GitHub
rodzic 7fa25ca7ae
commit 4ed8ded502
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -7528,8 +7528,9 @@ uint16_t mode_2DAkemi(void) {
//add geq left and right
if (um_data && fftResult) {
for (int x=0; x < cols/8; x++) {
unsigned band = x * cols/8;
int xMax = cols/8;
for (int x=0; x < xMax; x++) {
unsigned band = map2(x, 0, max(xMax,4), 0, 15); // map 0..cols/8 to 16 GEQ bands
band = constrain(band, 0, 15);
int barHeight = map(fftResult[band], 0, 255, 0, 17*rows/32);
CRGB color = CRGB(SEGMENT.color_from_palette((band * 35), false, PALETTE_SOLID_WRAP, 0));