Ejemplo n.º 1
0
        internal async Task DrawLineAsyncInternal(Color color, ushort x0, ushort y0, ushort x1, ushort y1)
        {
            Command c = new Command(CommandType.DirectNoReply);

            c.DrawLine(color, x0, y0, x1, y1);
            await _brick.SendCommandAsyncInternal(c);
        }
Ejemplo n.º 2
0
		internal async Task DrawLineAsyncInternal(Color color, ushort x0, ushort y0, ushort x1, ushort y1)
		{
			Command c = new Command(CommandType.DirectNoReply);
			c.DrawLine(color, x0, y0, x1, y1);
			await _brick.SendCommandAsyncInternal(c);
		}