.printBig


DESCRIPTION
Prints big characters on LCD screen
The characters take the space of two lines. The first two parameters are the coordinates of the LCD screen. The coordinates are the upper left point of the first character.
The 3rd parameter is the string to be print it on the screen.
You must call lcd.createChar() in setup() in order to set the big digit characters.


SYNTAX
lcd.printBig(x,y,st);


PARAMETERS
  • x, column coordinates
  • y, row coordinates
  • st, string to be print


RETURNS
None.


EXAMPLE


SEE ALSO
  • .print
  • .setCursor