본문 바로가기

소프트박스 코딩

소프트박스에서 캐릭터 LCD에 글자를 출력하기

반응형

 

소프트박스에서 캐릭터 LCD에 글자를 출력하기

 

1602 캐릭터 LCD는 1줄에 16개의 문자씩 2줄을 보여주는 LCD 모듈이다. 비슷한 모듈로 2004 Character LCD는 20개의 문자를 4줄 보여준다. 백라이트는 5V, 가변 저항을 사용하면 폰트의 명암을 조절할 수 있다. 연결도가 좀 복잡하니 주의하여 연결하고 실습을 한다.

가로 16 세로 2로 구성되어있어서 16x2 LCD이며 총 핀은 16개이며 초록색 백라이트 모듈이다. 아두이노의 라이브러리를 통해서 쉽게 제어할 수 있으며, 백라이트에 220옴 저항과 10k 가변저항은 밝기 조절용으로 필요하다.

16x2 LCD 연결도
아두이노 우노와 LCD 연결도

 

소프트박스에서 캐릭터 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
 * 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
 
 This example code is in the public domain.

 http://www.arduino.cc/en/Tutorial/LiquidCrystal
 */

// include the library code:
#include 

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

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);
}

 

 

반응형