Changes between Version 5 and Version 6 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCDfont2


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

--

Legend:

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

    v5 v6  
    22Prints text on the LCD screen using the default big font.
    33
    4 {{{
     4{{{#!c++
    55void PrintLCDfont2(const char* pszText);
    66
     
    2323== Examples ==
    2424
    25 {{{
     25{{{#!c++
    2626LocateLCD(10, 10);
    2727PrintLCDfont2("Hello World");
    2828}}}
    2929
    30 {{{
     30{{{#!c++
    3131string strMsg = "Hello\rWorld";
    3232LocateLCD(0, 0);