.begin


DESCRIPTION
Is used to set the LCD resolution. On an U1 model the LCD is 20x4 so there is no need to call .begin. You can change the settings in the setup() region of your sketch.


SYNTAX
lcd.begin(x,y);


PARAMETERS
  • x, the number of columns in your display.
  • y, the number of lines in your display.


RETURNS
None.


EXAMPLE


SEE ALSO
None