servicepoint/examples/lang_cs/Program.cs
Vinzenz Schroeter 10e6138756 rename example
2024-05-13 00:24:44 +02:00

20 lines
522 B
C#

using ServicePoint2;
using var connection = Connection.Open("127.0.0.1:2342");
connection.Send(Command.Clear());
connection.Send(Command.Brightness(128));
using var pixels = PixelGrid.New(Constants.PixelWidth, Constants.PixelHeight);
for (var offset = 0; offset < int.MaxValue; offset++)
{
pixels.Fill(false);
for (var y = 0; y < pixels.Height; y++)
pixels[(y + offset) % Constants.PixelWidth, y] = true;
connection.Send(Command.BitmapLinearWin(0, 0, pixels.Clone()));
Thread.Sleep(14);
}