Changes between Version 8 and Version 9 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCD
- Timestamp:
- 03/12/25 08:08:21 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCD
v8 v9 2 2 Display text on the LCD screen at the current X Y coordinate using the default font. 3 3 4 {{{ 4 {{{#!c++ 5 5 void PrintLCD(const string& strText); 6 6 … … 23 23 == Examples == 24 24 25 {{{ 25 {{{#!c++ 26 26 string strMsg = "Hello\rWorld"; 27 27 LocateLCD(0, 0); … … 29 29 }}} 30 30 31 {{{ 31 {{{#!c++ 32 32 LocateLCD(10, 10); 33 33 PrintLCD("Hello World");