Skip to content

Commit a53de67

Browse files
committed
ledmatrix: In debug mode turn all LEDs on
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 686a686 commit a53de67

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ledmatrix/src/main.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,8 @@ fn main() -> ! {
258258
_ => unreachable!(),
259259
});
260260
} else {
261-
// If no startup animation, render another pattern
262-
// Lighting up every second column is a good pattern to test for noise.
263-
state.grid = every_nth_col(2);
261+
// If no startup animation, keep display always on
262+
state.grid = percentage(100);
264263
};
265264

266265
#[cfg(feature = "evt")]

0 commit comments

Comments
 (0)