= InitLCD = Initializes the LCD display for use by an application. {{{ void InitLCD(int nGetImageDataAddr = 0); }}} == Parameters == * nGetImageDataAddr - Set to 1 to allow application to perform operations other than text == Return Value == * void - does not return any value == Remarks == * Any application that will use the LCD display must call this function before any display functions are used. * Initialize with the parameter as 1 if the CBitmap class will be used to display bitmaps. == Examples == {{{ InitLCD(); }}} {{{ InitLCD(1); }}} == See Also == * [wiki:DisplayText DisplayText] * [wiki:PrintLCD PrintLCD]