Fix HSV setting of non-underglow LEDs

This commit is contained in:
Eugenio Pastoral 2024-12-22 20:26:49 +08:00
commit d78535e130

View file

@ -61,10 +61,11 @@ static bool HOLOGRAPHICS_UNDERGLOW(effect_params_t* params) {
rgb_matrix_set_color(i, 0x00, 0x85, 0xff);
} else if (i == 76 || i == 86) {
rgb_matrix_set_color(i, 0x00, 0xb2, 0xff);
} else {
rgb_matrix_set_color(i, 0x00, 0x00, 0x00);
}
}
else {
rgb_matrix_set_color(i, 0x00, 0x00, 0x00);
}
}
return rgb_matrix_check_finished_leds(led_max);
}