Hello guys! got a new LCD module. i am using the liquid display sketch from the arduino. However i cannot get more than 16 digits in a row. what i want is for the text to go to the second row.
anyone knows how to make the excess text to the second row? thanks!
I think yopu are looking for the cursor commands. In the code below, a reading is put at the start of the first row (0) and then chr 11, then the same at start and chr 11 on the second row.
lcd.setCursor (0,0);
lcd.print(InTemp);
lcd.setCursor (11,0);
lcd.print (OutTemp);
lcd.setCursor(0,1);
lcd.print(diff);
lcd.print(" ");
lcd.setCursor(11,1);
lcd.print(DrainTemp);