Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/LocateLCD


Ignore:
Timestamp:
08/19/10 14:33:02 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/LocateLCD

    v1 v2  
    1 = Locate =
     1== LocateLCD ==
     2Sets the currect X,Y position on the LCD screen.
     3
     4{{{
     5void 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{{{
     24LocateLCD(10, 10);
     25PrintLCD("Hello World");
     26}}}
     27
     28=== See Also ===
     29
     30 * PrintLCD
     31 * DisplayText