I can't do the blinking text while having scrolling text at the second row of the i2c lcd in arduino.
I tried creating and naming two loops but it is doing one task then another.
void loop(){
blinkingloop();
scrollingloop();
}
void blinkingloop(){
lcd.setCursor(3, 0);
lcd.print(staticMessage);
delay(1000);
lcd.clear();
delay(500);
}
void scrollingloop(){
scrollMessage(1, scrollingMessage, 250, totalColumns);
}