Reference.LiquidCrystalPrint History
Hide minor edits - Show changes to output
November 04, 2011, at 09:46 AM
by Scott Fitzgerald -
Added lines 22-26:
!!!!Returns
byte\\
print() will return the number of bytes written, though reading that number is optional
Changed line 29 from:
to:
Changed line 40 from:
to:
September 07, 2008, at 06:03 AM
by David A. Mellis -
Added lines 1-35:
[[LiquidCrystal]]
!!print()
!!!!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 (base 16).
!!!!Example
[@
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
void setup()
{
lcd.print("hello, world!");
}
void loop() {}
@]