Skip to content

Library for displaying large numbers on LCD with I2C using Arduino

License

Notifications You must be signed in to change notification settings

Anush-DP/BigNumbers_I2C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BigNumbers_I2C

I2C version of BigNumbers.h.
Display large numbers on LCD with I2C using Arduino (or any board compatible with Arduino IDE).

Example video

Syntax

clearLargeNumber(x, y);

x is column of upper left corner for large character & y is row of upper left corner for large character, i.e.,
x -> column
y -> row

displayLargeNumber(num, x, y);

num -> Any number between 0 - 9
x -> column
y -> row

displayLargeInt(lnum, x, y, dig, leading);

lnum -> Any integer number (Ex: 452, 23442, etc)
x -> column
y -> row
dig -> number of digits of the integer (specifying this allows the digit positions to remain constant when printing out ints of various lengths)
leading -> sets if leading zeros are printed or not (false = no, true = yes)