.createChar
DESCRIPTION
Must be place in setup(), as lcd.createChar(); to create the big characters for the lcd display.
If you don't use lcd.printBig(); do not include lcd.createChar(), it takes up space of the memory.
SYNTAX
lcd.createChar();
PARAMETERS
none
RETURNS
None.
EXAMPLE
#include
#include
InvIoT_U1 lcd(A0,A1); void setup() { lcd.createCustomChars(); lcd.printBig(2,1,"10:12"); } void loop() { }
SEE ALSO
.print
.printBig