Changes between Version 8 and Version 9 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCD


Ignore:
Timestamp:
03/12/25 08:08:21 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCD

    v8 v9  
    22Display text on the LCD screen at the current X Y coordinate using the default font.
    33
    4 {{{
     4{{{#!c++
    55void PrintLCD(const string& strText);
    66
     
    2323== Examples ==
    2424
    25 {{{
     25{{{#!c++
    2626string strMsg = "Hello\rWorld";
    2727LocateLCD(0, 0);
     
    2929}}}
    3030
    31 {{{
     31{{{#!c++
    3232LocateLCD(10, 10);
    3333PrintLCD("Hello World");