Skip to content

progressbar for Arduino LCD Displays

License

Notifications You must be signed in to change notification settings

black-backdoor/progressbar-arduino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arduino LCD Progressbar

This library provides a simple progress bar for Arduino LCD displays using the LiquidCrystal-I2C library.

Example

Forked from skywodd Progress-Bar script
Original script details

Links

Usage

void render_progressbar(byte progress, String message = "", bool displayPercentage = true, int textRow = lcd_rows-2, int barRow = lcd_rows-1)

Parameters

  • progress - Progress value (0-100)
  • message (optional) - Optional message to display
  • displayPercentage (optional) - Whether to display the percentage (true/false)
  • textRow (optional) - Row number for the message & percentage
  • barRow (optional) - Row number for the progress bar

Original Script

The original script was authored by skywodd. For more details, refer to his article explaining the implementation.