internal async Task DrawRectangleAsyncInternal(Color color, ushort x, ushort y, ushort width, ushort height, bool filled)
        {
            Command c = new Command(CommandType.DirectNoReply);

            c.DrawRectangle(color, x, y, width, height, filled);
            await _brick.SendCommandAsyncInternal(c);
        }
示例#2
0
		internal async Task DrawRectangleAsyncInternal(Color color, ushort x, ushort y, ushort width, ushort height, bool filled)
		{
			Command c = new Command(CommandType.DirectNoReply);
			c.DrawRectangle(color, x, y, width, height, filled);
			await _brick.SendCommandAsyncInternal(c);
		}