아두이노, 2열 시리얼 LCD 디스플레이 핀 직접 제어 예제
글. 오상문 sualchi@daum.net
아두이노 예제에서 LCD hello world 예제를 선택해서 컴파일하고 업로드하면 LCD에 hello world와 초 단위 시간이 나타납니다. 이 예제는 드라이버 모듈을 사용하지 않고 직접 다스플레이에 신호를 전달하는 방식이라 회로가 복잡합니다. 간단하게 제어하고 싶으면 드라이버 모듈을 장착하는 것이 좋습니다.
재료: 아두이노 우노, LCD 1602 디스플레이, 가변저항, 저항(220옴), 그리고 배선 여러개
[그림] LCD 1602 디스플레이 핀 구조
[그림] 아두이노와
LCD 1602 디스플레이 회로 연결
[그림] 실행 화면
[그림] LCD 헬로우월드 예제 선택
[코드] 아두이노의 예제에 있는 헬로우 월드 코드
/*
LiquidCrystal Library - Hello World
Demonstrates the use a 16x2 LCD display. The LiquidCrystal library works with all LCD displays that are compatible with the Hitachi HD44780 driver. There are many of them out there, and you can usually tell them by the 16-pin interface. This sketch prints "Hello World!" to the LCD and shows the time. The circuit:
* LCD RS pin to digital pin 12
* 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
* LCD VSS pin to ground
* LCD VCC pin to 5V
* 10K resistor:
* ends to +5V and ground
* wiper to LCD VO pin (pin 3)
Library originally added 18 Apr 2008 by David A. Mellis
library modified 5 Jul 2009 by Limor Fried (http://www.ladyada.net)
example added 9 Jul 2009 by Tom Igoe
modified 22 Nov 2010 by Tom Igoe
modified 7 Nov 2016 by Arturo Guadalupi
This example code is in the public domain.
http://www.arduino.cc/en/Tutorial/LiquidCrystalHelloWorld
*/
// include the library code:
#include <LiquidCrystal.h>
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
lcd.print(millis() / 1000);
}
아래 동영상을 보시면 진행 과정을 볼 수 있습니다.
자료 출처: https://youtu.be/wEbGhYjn4QI
<이상>
'아두이노, 라즈베리파이' 카테고리의 다른 글
아두이노, 블루투스 AT 명령 HC-03, HC-05, HC-06 ... (0) | 2020.12.21 |
---|---|
아두이노, Tmp36 온도 센서 예제 (0) | 2020.04.01 |
아두이노, RFID 모듈 RS 522 예제 (0) | 2019.11.24 |
아두이노, 사운드 센서(소리 센서) 예제 (0) | 2019.11.08 |
아두이노, 온습도센서(DHT11) 예제 (0) | 2019.11.07 |