Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCD
- Timestamp:
- 08/19/10 21:33:03 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/PrintLCD
v3 v4 1 1 = PrintLCD = 2 Prints text on the LCD screenusing the default font.2 Display text on the LCD screen at the current X Y coordinate using the default font. 3 3 4 4 {{{ 5 void PrintLCD(const string& strText); 6 5 7 void PrintLCD(const char* pszText); 6 7 void PrintLCD(const std::string& strText);8 8 }}} 9 9 10 10 == Parameters == 11 11 12 * pszText - character array pointer such as string literal "Hello World"13 * strText - const string reference12 * strText - string variable to display 13 * pszText - pointer to character array to display such as literal "Hello World" 14 14 15 15 == Return Value == … … 24 24 25 25 {{{ 26 LocateLCD(10, 10); 27 PrintLCD("Hello World"); 26 string strMsg = "Hello\rWorld"; 27 LocateLCD(0, 0); 28 PrintLCD(strMsg); 28 29 }}} 29 30 30 31 {{{ 31 string strMsg = "Hello\rWorld"; 32 LocateLCD(0, 0); 33 PrintLCD(strMsg); 32 LocateLCD(10, 10); 33 PrintLCD("Hello World"); 34 34 }}} 35 35