Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCDfont2


Ignore:
Timestamp:
08/19/10 15:13:10 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v1  
     1= PrintLCDfont2 =
     2Prints text on the LCD screen using the default big font.
     3
     4{{{
     5void PrintLCDfont2(const char* pszText);
     6
     7void PrintLCDfont2(const std::string& strText);
     8}}}
     9
     10== Parameters ==
     11
     12 * pszText - character array pointer such as string literal "Hello World"
     13 * strText - const string reference
     14
     15== Return Value ==
     16
     17 * void - does not return any value
     18
     19== Remarks ==
     20
     21 * Text may contain carriage returns to cause current position to drop to next line and left of screen. For example, "Hello\rWorld" will cause "Hello" to be displayed at the currect cursor location and "World" to be displayed one line down and at the left of the display.
     22
     23== Examples ==
     24
     25{{{
     26LocateLCD(10, 10);
     27PrintLCDfont2("Hello World");
     28}}}
     29
     30{{{
     31string strMsg = "Hello\rWorld";
     32LocateLCD(0, 0);
     33PrintLCD(strMsg);
     34}}}
     35
     36== See Also ==
     37
     38 * LocateLCD
     39 * DisplayText