displayClear (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

DX4 pro, NX-400, LX4

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;