122
CipherLab BASIC Programming Part I
GET_BKLIT_LEVEL 8200, 8400, 8700
Purpose To get the LCD backlight level.
Syntax A% = GET_BKLIT_LEVEL
Remarks
“A%” is an integer value, indicating the LCD backlight level.
1
2
3
4
17
18
19
20
Backlight with very low luminosity
Backlight with low luminosity
Backlight with medium luminosity
Backlight with high luminosity
Shade effect on and backlight with very low luminosity
Shade effect on and backlight with low luminosity
Shade effect on and backlight with medium luminosity
Shade effect on and backlight with high luminosity
Example
See Also
SET_BKLIT_LEVEL, SET_AUTO_BKLIT, BACKLIT
LCD_CONTRAST
Purpose To set the contrast level of the LCD.
Syntax LCD_CONTRAST(N%)
Remarks “N%” is an integer variable, indicating the contrast level in the range of 1 to 8.
The higher value, the stronger contrast.
Example
LCD_CONTRAST(4)
' set the LCD contrast to level 4 (medium
contrast)