[LiquidCrystal]
説明
Write a character to the LCD.
構文
lcd.write(data)
媒介変数
lcd: a variable of typeLiquidCrystaldata: the character to write to the display
戻り値
byte (write() will return the number of bytes written, though reading that number is optional)
例
#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());
}
}ライブラリリファレンスホーム
86Duinoリファレンスのテキストは、Arduinoリファレンスを改変したもので、Creative Commons Attribution-ShareAlike 3.0ライセンスに基づいてライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。