Description Set the direction for text written to the LCD to left-to-right, the default. This means that subsequent characters written to the display will go from left to right, but does not affect previously-output text. Syntax lcd.leftToRight() Parameters lcd: a variable of type LiquidCrystal See also - rightToLeft() Libraries Reference Home The text of the […]
Description Turns off automatic scrolling of the LCD. Syntax lcd.noAutoscroll() Parameters lcd: a variable of type LiquidCrystal See also - autoscroll() 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 in the reference are released into […]
Description Turns on automatic scrolling of the LCD. This causes each character output to the display to push previous characters over by one space. If the current text direction is left-to-right (the default), the display scrolls to the left; if the current direction is right-to-left, the display scrolls to the right. This has the effect […]
Description Scrolls the contents of the display (text and cursor) one space to the right. Syntax lcd.scrollDisplayRight() Parameters lcd: a variable of type LiquidCrystal Example - scrollDisplayLeft() and scrollDisplayRight() from the Arduino Tutorial See also - scrollDisplayLeft() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is […]
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 […]