displayClear (Function)

Top  Previous  Next

Architecture:

X32 / NX32L

Firmware version:

1.30 / 1.00.00


This clears the contents of the display. After this call, the current write position will be set to the upper left corner (1,1).

 

Input:

None.

 

Returns:

None.

 

Declaration:

FUNCTION displayClear;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
   ...
   // Clear the display
   displayClear();
   ...
END;
 
END_PROGRAM;