a bunch of minor changes combined:

- From instead of Into
- unsafe_data_ref for other payloads
- CByteSlice for returning memory spans
- send Packet instead of Into<Packet>
- expose packet layer to C/C#
This commit is contained in:
Vinzenz Schroeter 2024-05-15 20:34:51 +02:00
parent 5803b71f3a
commit 1dad113ca1
33 changed files with 462 additions and 733 deletions

View file

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