18 lines
434 B
C#
18 lines
434 B
C#
namespace DisplayCommands.Internals;
|
|
|
|
internal enum DisplayCommand : ushort
|
|
{
|
|
Clear = 0x0002,
|
|
Cp437Data = 0x0003,
|
|
CharBrightness = 0x0005,
|
|
Brightness = 0x0007,
|
|
HardReset = 0x000b,
|
|
FadeOut = 0x000d,
|
|
[Obsolete("ignored by display code")] BitmapLegacy = 0x0010,
|
|
BitmapLinear = 0x0012,
|
|
BitmapLinearWin = 0x0013,
|
|
BitmapLinearAnd = 0x0014,
|
|
BitmapLinearOr = 0x0015,
|
|
BitmapLinearXor = 0x0016
|
|
}
|