예제 #1
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);
        }
예제 #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);
		}