displayBacklightWake (Function)

Top  Previous  Next

Architecture:

NX32L

Device support:

NX-400, LX4

Firmware version:

1.93.00


This function is used to restore the backlight after it has turned off due to inactivity when autoOff is enabled on displayPower.

 

Input:

None.

 

Returns:

None.

 

Declaration:

FUNCTION displayBacklightWake;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
  ...
  // Restore backlight
  displayBacklightWake();
  ...
END;
 
END_PROGRAM;