= LocateLCD = Sets the current X,Y display position on the LCD screen. {{{ void LocateLCD(int x, int y); }}} == Parameters == * x - X coordinate (Range 0 - 639) * y - Y coordinate (Range 0 - 479) == Return Value == * void - does not return any value == Remarks == * The DisplayText function combines the LocateLCD and the PrintLCD into one function. == Example == {{{ LocateLCD(10, 10); PrintLCD("Hello World"); }}} == See Also == * [wiki:PrintLCD PrintLCD] * [wiki:DisplayText DisplayText]