| | 1 | = InitLCD = |
| | 2 | Initializes the LCD display for use by an application. |
| | 3 | |
| | 4 | {{{ |
| | 5 | void InitLCD(int nGetImageDataAddr = 0); |
| | 6 | }}} |
| | 7 | |
| | 8 | == Parameters == |
| | 9 | |
| | 10 | * nGetImageDataAddr - Set to 1 to allow application to perform operations other than text |
| | 11 | |
| | 12 | == Return Value == |
| | 13 | |
| | 14 | * void - does not return any value |
| | 15 | |
| | 16 | == Remarks == |
| | 17 | |
| | 18 | * Any application that will use the LCD display must call this function before any display functions are used. |
| | 19 | * Initialize with the parameter as 1 if the CBitmap class will be used to display bitmaps. |
| | 20 | |
| | 21 | == Examples == |
| | 22 | |
| | 23 | {{{ |
| | 24 | InitLCD(); |
| | 25 | }}} |
| | 26 | |
| | 27 | {{{ |
| | 28 | InitLCD(1); |
| | 29 | }}} |
| | 30 | |
| | 31 | == See Also == |
| | 32 | |
| | 33 | * PrintLCD |
| | 34 | * DisplayText |