Skip to content

Commit

Permalink
adjusted Lifi for plastic chromadeck casing
Browse files Browse the repository at this point in the history
  • Loading branch information
LivingSynthesis committed Dec 10, 2024
1 parent 45df430 commit 12a9df8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion VortexEngine/src/Wireless/VLSender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,9 @@ void VLSender::startPWM()
// ensure max brightness
Leds::setBrightness(255);
Leds::clearAll();
Leds::setIndex(LED_0, RGB_WHITE);
for (int l = 0; l < LED_COUNT; ++l) {
Leds::setIndex((LedPos)l, RGB_WHITE);
}
Leds::update();
// restore brightness
Leds::setBrightness(oldBrightness);
Expand Down

0 comments on commit 12a9df8

Please sign in to comment.