internal async Task DrawPixelAsyncInternal(Color color, ushort x, ushort y)
        {
            Command c = new Command(CommandType.DirectNoReply);

            c.DrawPixel(color, x, y);
            await _brick.SendCommandAsyncInternal(c);
        }
		internal async Task DrawPixelAsyncInternal(Color color, ushort x, ushort y)
		{
			Command c = new Command(CommandType.DirectNoReply);
			c.DrawPixel(color, x, y);
			await _brick.SendCommandAsyncInternal(c);
		}