More compiler warning fixes

This commit is contained in:
Daniel 2024-06-01 19:46:31 +03:00
parent 715d269f61
commit 30bea67d38
3 changed files with 12 additions and 9 deletions

View file

@ -176,7 +176,6 @@ void LED::rainbow_run(void) {
}
// Assemble the color
//uint32_t color = (static_cast<uint32_t>(r) << 16) | (static_cast<uint32_t>(g) << 8) | b;
pixels.setPixelColor(0, pixels.Color(r, g, b)); // RGB
}