Arduino - lcd.print()
Description
Prints text to the LCD.
Syntax
There are two ways:
- 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 (base 16).
Returns
- Return the number of bytes written, though reading that number is optional
Example
Hardware Required
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables .
Additionally, some links direct to products from our own brand, DIYables .
Wiring Diagram
This image is created using Fritzing. Click to enlarge image
Arduino Code
#include <LiquidCrystal.h>
LiquidCrystal lcd(11, 12, 2, 3, 4, 5);
void setup()
{
lcd.begin(16, 2); // set up the LCD 16x2
lcd.print("hello, world!"); // print a message to the LCD
}
void loop() {}
See Also
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |