最終更新:2009-12-22 (火) 06:47:29 (5238d)  

Arduino/LiquidCrystal
Top / Arduino / LiquidCrystal

http://arduino.cc/en/Reference/LiquidCrystal

このライブラリを使うことで、Hitachi HD44780とその互換チップセットをベースにしたLCDを制御できます。4ビットと8ビット両方のモードをサポートしています。rs、rw、enable_controlのほかに、4本または8本のデータライン?が使われます。

This library allows an Arduino board to control LiquidCrystal? displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs. The library works with in either 4- or 8-bit mode (i.e. using 4 or 8 data lines in addition to the rs, enable, and, optionally, the rw control lines).

Function

  • LiquidCrystal?()
  • begin()
  • clear()
  • home()
  • setCursor()
  • write()
  • print()
  • cursor()
  • noCursor()
  • blink()
  • noBlink()
  • display()
  • noDisplay()
  • scrollDisplayLeft?()
  • scrollDisplayRight?()
  • autoscroll()
  • noAutoscroll()
  • leftToRight?()
  • rightToLeft?()
  • createChar() - 外字?を登録できる

参考