internal async Task DrawInverseRectangleAsyncInternal(ushort x, ushort y, ushort width, ushort height)
        {
            Command c = new Command(CommandType.DirectNoReply);

            c.DrawInverseRectangle(x, y, width, height);
            await _brick.SendCommandAsyncInternal(c);
        }
Exemplo n.º 2
0
		internal async Task DrawInverseRectangleAsyncInternal(ushort x, ushort y, ushort width, ushort height)
		{
			Command c = new Command(CommandType.DirectNoReply);
			c.DrawInverseRectangle(x, y, width, height);
			await _brick.SendCommandAsyncInternal(c);
		}