fix endless example runs in pipeline
All checks were successful
Rust / build (push) Successful in 6m13s

This commit is contained in:
Vinzenz Schroeter 2025-02-16 17:08:18 +01:00
parent fa7bc267cb
commit 335127b219

View file

@ -7,8 +7,10 @@ connection.Send(Command.Clear());
connection.Send(Command.Brightness(5)); connection.Send(Command.Brightness(5));
connection.Send(Command.Utf8Data(0,0, CharGrid.Load("This is a test")));
var pixels = Bitmap.NewMaxSized(); var pixels = Bitmap.NewMaxSized();
for (ulong offset = 0; offset < ulong.MaxValue; offset++) for (ulong offset = 0; offset < pixels.Width(); offset++)
{ {
pixels.Fill(false); pixels.Fill(false);