1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

デジットの激安ジャンクLCD16文字1行

Posted at

デジットで買ったジャンクLCD(16文字x1行)をArduinoで使う方法

IMG_2567.JPG

POPに書いてあるピンアサインから、コントローラICはHD44780(互換)と考えられる。
よって、arduinoのライブラリでLiquidCrystalが使用可能。

面倒なので、amazonで買ったシリアルインタフェースモジュールを使ってI2C接続する。
通常のLiquidCrystalでは16文字x2行が標準で、1行には対応していない。
普通に書くと8文字しか表示しない。
調べたところスケッチに工夫が必要なことが判明。


# include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27,16,2); 
void setup() {
   lcd.init();
  // Print a message to the LCD.
    lcd.setCursor(0,0);
    lcd.print("First8ch");
    lcd.setCursor(40,0); 
    lcd.print("Last8ch.");
  }
void loop()
  {
  }

IMG_3692.jpeg
(FとLの縦線が上手く表示できないのはご愛敬)

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?