Changes between Version 5 and Version 6 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCDfont2
- Timestamp:
- 03/12/25 08:07:45 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCDfont2
v5 v6 2 2 Prints text on the LCD screen using the default big font. 3 3 4 {{{ 4 {{{#!c++ 5 5 void PrintLCDfont2(const char* pszText); 6 6 … … 23 23 == Examples == 24 24 25 {{{ 25 {{{#!c++ 26 26 LocateLCD(10, 10); 27 27 PrintLCDfont2("Hello World"); 28 28 }}} 29 29 30 {{{ 30 {{{#!c++ 31 31 string strMsg = "Hello\rWorld"; 32 32 LocateLCD(0, 0);