创客百科

姿势共享,有节操无门槛参与的创客百科,创客动力之源 \ (^_^) /

用户工具

站点工具


en:arduino:libraries:liquidcrystalwrite

LiquidCrystal

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

Returns

byte

write() will return the number of bytes written, though reading that number is optional

Example

#include <LiquidCrystal.h>
 
LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
 
void setup()
{
  Serial.begin(9600);
}
 
void loop()
{
  if (Serial.available()) {
    lcd.write(Serial.read());
  }
}

Reference Home

本页面的其他翻译:
en/arduino/libraries/liquidcrystalwrite.txt · 最后更改: 2016/12/25 22:15 (外部编辑)