1 | | = Locate = |
| 1 | == LocateLCD == |
| 2 | Sets the currect X,Y position on the LCD screen. |
| 3 | |
| 4 | {{{ |
| 5 | void LocateLCD(int x, int y); |
| 6 | }}} |
| 7 | |
| 8 | === Parameters === |
| 9 | |
| 10 | * x - X coordinate (Range 0 - 639) |
| 11 | * y - Y coordinate (Range 0 - 479) |
| 12 | |
| 13 | === Return Value === |
| 14 | |
| 15 | * void - does not return any value |
| 16 | |
| 17 | === Remarks === |
| 18 | |
| 19 | * The DisplayText function combines the LocateLCD and the PrintLCD into one function. |
| 20 | |
| 21 | === Example === |
| 22 | |
| 23 | {{{ |
| 24 | LocateLCD(10, 10); |
| 25 | PrintLCD("Hello World"); |
| 26 | }}} |
| 27 | |
| 28 | === See Also === |
| 29 | |
| 30 | * PrintLCD |
| 31 | * DisplayText |