Exemplo n.º 1
0
        internal async Task DrawImageAsyncInternal(Color color, ushort x, ushort y, string devicePath)
        {
            Command c = new Command(CommandType.DirectNoReply);

            c.DrawImage(color, x, y, devicePath);
            await _brick.SendCommandAsyncInternal(c);
        }
Exemplo n.º 2
0
		internal async Task DrawImageAsyncInternal(Color color, ushort x, ushort y, string devicePath)
		{
			Command c = new Command(CommandType.DirectNoReply);
			c.DrawImage(color, x ,y, devicePath);
			await _brick.SendCommandAsyncInternal(c);
		}