servicepoint-tanks/DisplayCommands/Internals/DisplayCommand.cs
2024-04-12 14:29:43 +02:00

18 lines
396 B
C#

namespace DisplayCommands.Internals;
internal enum DisplayCommand: ushort
{
Clear = 0x0002,
Cp437Data = 0x0003,
CharBrightness = 0x0005,
Brightness = 0x0007,
HardReset = 0x000b,
FadeOut = 0x000d,
BitmapLegacy = 0x0010,
BitmapLinear = 0x0012,
BitmapLinearWin = 0x0013,
BitmapLinearAnd = 0x0014,
BitmapLinearOr = 0x0015,
BitmapLinearXor = 0x0016,
}