Reference | All - Docs - Libraries - Soft Processors - Cores

VGALiquidCrystal

write()

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

Example

 
#include <VGALiquidCrystal.h>;

LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);

void setup()
{
  Serial.begin(9600);
}

void loop()
{
  if (Serial.available()) {
    lcd.write(Serial.read());
  }
}

Corrections, suggestions, and new documentation can be added directly to the wiki page. Scroll to the bottom, choose "Edit Page" and use "Papilio" as the password.

This text is from the Arduino reference and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.

  

Share |