電子工作

Arduino#6 液晶ディスプレイ装置を使って文字を表示してみる‼(パラレル通信)

Arduinoのデータのやり取り、つまり通信方式には主に「シリアル通信」と「パラレル通信」がある。

今回のLCDモジュールとの接続には、「パラレル通信方式」での接続します。

パラレル通信方式は、複数本の信号線を使う通信方式になります。

配線図

  • LCD Enable pin to digital pin 11
  •  LCD D4 pin to digital pin 5
  • LCD D5 pin to digital pin 4
  • LCD D6 pin to digital pin 3
  •  LCD D7 pin to digital pin 2
  •  LCD R/W pin to ground
  •  10K resistor : ends to +5V and groundwiper to LCD VO pin (pin 3)

この回路図の作図には fritzing を利用させて頂いております。https://fritzing.org/home/

使用部品

  • LCD 1602 Module(液晶ディスプレイ)・・・ (スターターキット:Amazon購入)
  • Potentiometer 10K (可変抵抗器)    ・・・ (スターターキット:Amazon購入)

Arduino IDE

  • 「スケッチ」>「ライブラリをインクルード」>「ライブラリを管理」を選択。
  • ライブラリマネジャーに、「LiquidCrystal」と入力し、Enter。
  • 「LiquidCrystal by Arduino,Adafruit」をインストールする。
  • 「ファイル」>「開く」>「libraries」>「LiquidCrystal」>「examples」>「Blink」>「Blink」を開く。

  1. /*
  2.   LiquidCrystal Library – Blink
  3.  Demonstrates the use a 16×2 LCD display.  The LiquidCrystal
  4.  library works with all LCD displays that are compatible with the
  5.  Hitachi HD44780 driver. There are many of them out there, and you
  6.  can usually tell them by the 16-pin interface.
  7.  This sketch prints “Hello World!” to the LCD and makes the
  8.  cursor block blink.
  9.  The circuit:
  10.  * LCD RS pin to digital pin 12
  11.  * LCD Enable pin to digital pin 11
  12.  * LCD D4 pin to digital pin 5
  13.  * LCD D5 pin to digital pin 4
  14.  * LCD D6 pin to digital pin 3
  15.  * LCD D7 pin to digital pin 2
  16.  * LCD R/W pin to ground
  17.  * 10K resistor:
  18.    * ends to +5V and ground
  19.    * wiper to LCD VO pin (pin 3)
  20.  Library originally added 18 Apr 2008
  21.  by David A. Mellis
  22.  library modified 5 Jul 2009
  23.  by Limor Fried (http://www.ladyada.net)
  24.  example added 9 Jul 2009
  25.  by Tom Igoe
  26.  modified 22 Nov 2010
  27.  by Tom Igoe
  28.  modified 7 Nov 2016
  29.  by Arturo Guadalupi
  30.  This example code is in the public domain.
  31.  http://www.arduino.cc/en/Tutorial/LiquidCrystalBlink
  32. */
  33. // include the library code:
  34. #include <LiquidCrystal.h>
  35. // initialize the library by associating any needed LCD interface pin
  36. // with the arduino pin number it is connected to
  37. const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
  38. LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
  39. void setup() {
  40.   // set up the LCD’s number of columns and rows:
  41.   lcd.begin(16, 2);
  42.   // Print a message to the LCD.
  43.   lcd.print(“hello, world!”);
  44. }
  45. void loop() {
  46.   // Turn off the blinking cursor:
  47.   lcd.noBlink();
  48.   delay(3000);
  49.   // Turn on the blinking cursor:
  50.   lcd.blink();
  51.   delay(3000);
  52. }
  • 53行目:lcd.print(“hello, world!”);/ から、配線がうまくいけば、hello, world! の文字がLCDに表示されます。

まとめ

  • 「hello, world!」 の文字がLCDに表示された。
  • パラレル通信で配線したが、非常に煩雑でした。