Description Scrolls the contents of the display (text and cursor) one space to the left. Syntax lcd.scrollDisplayLeft() Parameters lcd: a variable of type LiquidCrystal Example - scrollDisplayLeft() and scrollDisplayRight() from the Arduino Tutorial See also - scrollDisplayRight() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is […]
Description Turns off the LCD display, without losing the text currently shown on it. Syntax lcd.noDisplay() Parameters lcd: a variable of type LiquidCrystal Example - display() and noDisplay() from the Arduino Tutorial See also - display() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed […]
Description Turns on the LCD display, after it’s been turned off with noDisplay(). This will restore the text (and cursor) that was on the display. Syntax lcd.display() Parameters lcd: a variable of type LiquidCrystal Example - display() and noDisplay() from the Arduino Tutorial See also - noDisplay() Libraries Reference Home The text of the 86Duino […]
Description Turns off the blinking LCD cursor. Syntax lcd.noBlink() Parameters lcd: a variable of type LiquidCrystal Example - blink() and noBlink() from the Arduino Tutorial See also - blink() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. […]
Description Display the blinking LCD cursor. If used in combination with the cursor() function, the result will depend on the particular display. Syntax lcd.blink() Parameters lcd: a variable of type LiquidCrystal Example - blink() and noBlink() from the Arduino Tutorial See also - noBlink() - cursor() Libraries Reference Home The text of the 86Duino reference […]
Description Hides the LCD cursor. Syntax lcd.noCursor() Parameters lcd: a variable of type LiquidCrystal Example - cursor() and noCursor() from the Arduino Tutorial See also - cursor() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples […]
Description Display the LCD cursor: an underscore (line) at the position to which the next character will be written. Syntax lcd.cursor() Parameters lcd: a variable of type LiquidCrystal Example - cursor() and noCursor() from the Arduino Tutorial See also - noCursor() Libraries Reference Home The text of the 86Duino reference is a modification of the […]
Description Prints text to the LCD. Syntax lcd.print(data) lcd.print(data, BASE) Parameters lcd: a variable of type LiquidCrystal data: the data to print (char, byte, int, long, or string) BASE (optional): the base in which to print numbers: BIN for binary (base 2), DEC for decimal (base 10), OCT for octal (base 8), HEX for hexadecimal […]
Description Write a character to the LCD. Syntax lcd.write(data) Parameters lcd: a variable of type LiquidCrystal data: the character to write to the display Returns byte (write() will return the number of bytes written, though reading that number is optional) Example Libraries Reference Home The text of the 86Duino reference is a modification of the […]
Description Position the LCD cursor; that is, set the location at which subsequent text written to the LCD will be displayed. Syntax lcd.setCursor(col, row) Parameters lcd: a variable of type LiquidCrystal col: the column at which to position the cursor (with 0 being the first column) row: the row at which to position the cursor […]