lcd.setCursor(int column, int row): sets the cursor to the specified column and row lcd.print(String message): displays the message on the display lcd.clear(): clears the display This example works well to display static text no longer than 16 characters. Display Scrolling Text on the LCD...
Scrolling is a useful technique when you can’t get your text to fit on one line of the LCD display. Look in the LiquidCrystal examples menu for Scroll and load it into your Arduino IDE. Scroll begins in an identical fashion to the Hello World sketch, including loading the text “hello,...
@abstract Turns on automatic scrolling of the LCD. @discussion Turns on automatic scrolling of the LCD. This causes each character output to the display to push previous characters over by one space. If the current text direction is left-to-right (the default), ...
lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE); lcd.setBacklight(HIGH); Then I tell it to go to the first line at left most position lcd.setCursor(0,0); and print lcd.print("I just made an"); then move the cursor to the second line and the left most position lcd.setCursor(0,1); ...