internal async Task SelectFontAsyncInternal(FontType fontType)
        {
            Command c = new Command(CommandType.DirectNoReply);

            c.SelectFont(fontType);
            await _brick.SendCommandAsyncInternal(c);
        }
Esempio n. 2
0
		internal async Task SelectFontAsyncInternal(FontType fontType)
		{
			Command c = new Command(CommandType.DirectNoReply);
			c.SelectFont(fontType);
			await _brick.SendCommandAsyncInternal(c);
		}