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);
        }
Example #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);
		}