LCD ProgressBar (visible numbers instead of squares)

hddforensic,
print() and write() perform very different functions.

The documentation on the LiquidCrystal page for print() is not very clear:

The documentation on the LiquidCrystal page for write() is better:

Bottom line is

  • print() displays the characters for the number represented by the value
  • write() displays the character represented by the value

To display a custom character you need to use write() not print()

--- bill