Exemplo n.º 1
0
// Toggles splashscreen on and off
void serLCD::toggleSplash()
{
	specialCommand(LCD_SPLASHTOGGLE);
}
Exemplo n.º 2
0
// Saves first 2 lines of txt to splash screen memory
void serLCD::setSplash(){
	specialCommand(LCD_SETSPLASHSCREEN);
}
Exemplo n.º 3
0
// Set brightness value range 1-30 1=OFF 30=FULL
void serLCD::setBrightness(int val){
	if(val >= 1 && val <= 30){
		specialCommand(LCD_BACKLIGHT | (val - 1));
	}
}