Will adding the lcd.setCursor (0,1); string into void setup confine the lcd.print contained in the void loop to the Second line of the LCD?
// Switch on the backlight
lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE);
lcd.setBacklight(HIGH);
lcd.home (); // go home
lcd.print("LockupController");
lcd.setCursor (0,1); //<======== as seen here
}