반응형
소프트박스에서 캐릭터 LCD에 글자를 출력하기
1602 캐릭터 LCD는 1줄에 16개의 문자씩 2줄을 보여주는 LCD 모듈이다. 비슷한 모듈로 2004 Character LCD는 20개의 문자를 4줄 보여준다. 백라이트는 5V, 가변 저항을 사용하면 폰트의 명암을 조절할 수 있다. 연결도가 좀 복잡하니 주의하여 연결하고 실습을 한다.
가로 16 세로 2로 구성되어있어서 16x2 LCD이며 총 핀은 16개이며 초록색 백라이트 모듈이다. 아두이노의 라이브러리를 통해서 쉽게 제어할 수 있으며, 백라이트에 220옴 저항과 10k 가변저항은 밝기 조절용으로 필요하다.
아두이노 스케치 실습코드
/*
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);
}
반응형
'소프트박스 코딩' 카테고리의 다른 글
소프트박스에서 온도 습도 센서 데이터 확인하기 (0) | 2019.01.27 |
---|---|
소프트박스에서 OLED에 글자와 그림을 출력하기 (0) | 2018.11.07 |
소프트박스에서 스텝모터 구동하기 (0) | 2018.11.07 |
소프트박스에서 RGB LED로 컬러 불 켜기 (0) | 2018.11.07 |
소프트박스에서 스피커로 소리 내보기 (0) | 2018.11.07 |