Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayStr
- Timestamp:
- 08/20/10 08:01:00 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayStr
v4 v5 1 1 = DisplayStr = 2 Prints text on the LCD screenat the specified position using a specified font, and display logic.2 Displays text on the LCD display at the specified position using a specified font, and display logic. 3 3 4 4 {{{ 5 void DisplayStr(int nFont, int x, int y, int dsplogic, const string& strText); 6 5 7 void DisplayStr(int nFont, int x, int y, int dsplogic, const char* pszText); 6 7 void DisplayStr(int nFont, int x, int y, int dsplogic, const std::string& strText);8 8 }}} 9 9 … … 13 13 * x - X coordinate (0 - 639) 14 14 * y - Y coordinate (0 - 479) 15 * dsplogic - DSP_LOGIC_OVERWRITE, DSP_LOGIC_SET, DSP_LOGIC_XOR, or DSP_LOGIC_RESET 15 * dsplogic - display logic, DSP_LOGIC_OVERWRITE, DSP_LOGIC_SET, DSP_LOGIC_XOR, or DSP_LOGIC_RESET 16 * strText - text to display 16 17 * pszText - character array pointer such as string literal "Hello World" to display 17 * strText - string reference to string to display18 18 19 19 == Return Value == 20 20 21 * void - does not return any value 21 This function does not return any value. 22 22 23 23 == Remarks == 24 25 InitLCD must be called at the beginning of any application that will use the display. 24 26 25 27 == Examples ==