예제 #1
0
        internal async Task DrawTextAsyncInternal(Color color, ushort x, ushort y, string text)
        {
            Command c = new Command(CommandType.DirectNoReply);

            c.DrawText(color, x, y, text);
            await _brick.SendCommandAsyncInternal(c);
        }
예제 #2
0
		internal async Task DrawTextAsyncInternal(Color color, ushort x, ushort y, string text)
		{
			Command c = new Command(CommandType.DirectNoReply);
			c.DrawText(color, x, y, text);
			await _brick.SendCommandAsyncInternal(c);
		}