Skip to content
회로도전자부품
2013.11.06 08:12

아두이노와 1602 LCD 연결

조회 수 15474 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부

아두이노와 1602 LCD 연결

 

http://cafe.naver.com/makezone/75

 

this is different from the diagram on arduino.cc(just a little bit)

 

#include <LiquidCrystal.h>

// variables for input pin and control LED
int analogInput = 1;//Vout핀 연결
int LEDpin = 13;//프로그램이 동작하는걸 보여준다.
int prev = LOW;
int refresh = 500;
float vout = 0.0;
float vin = 0.0;
float R1 = 9820.0; // 저항 R1

float R2 = 987.0; //저항 R2!

int value = 0;

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);


void setup()

{
    pinMode(analogInput, INPUT);// 핀모드 선언

    pinMode(LEDpin, OUTPUT);// 핀모드 선언   

   Serial.begin(19200);// 시리얼포트 통신 초기
  
    lcd.begin(16, 2);
    
  
}
void loop(){
     value = analogRead(analogInput);// 1번핀 값을 읽음
     if (value >= 1023) {
     Serial.println("MAX!!");
     delay(refresh);
     return;
}
    else if (value <= 0) {
        Serial.println("MIN!!");
        delay(refresh);
        return;
}
if (prev == LOW)

    {
        prev = HIGH;
    }

else {
        prev = LOW;
       }
digitalWrite(LEDpin, prev);//디지털 포트 13번 핀 깜빡이게
vout = (value * 5.0) / 1024.0; //10비트 분해능이므로 1024로 나눠줌
vin = vout / (R2/(R1+R2));//저항분배법칙 으로 계산
Serial.print(vin); //입력되는 전압값 출력

Serial.println(" volt");
lcd.print(vin);
delay(refresh);
}
 

 

 

 

 


// rs on pin 12
// rw on pin 11
// enable on pin 10

 

 

 

ETC_1.PNG ETC_2.PNG

 

회로

Before wiring the LCD screen to your Arduino we suggest to solder a pin header strip to the 14 (or 16) pin count connector of the LCD screen, as you can see in the image above.
To wire your LCD screen to your Arduino, connect the following pins:

  • 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

Additionally, wire a 10K pot to +5V and GND, with it's wiper (output) to LCD screens VO pin (pin3).

click the images to enlarge

 

 

Code Start

 

/*
  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 <LiquidCrystal.h>

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

Code End

 

 

 

See Also:

 

 

 

 

 

 

 

로그인 후 댓글쓰기가 가능합니다.

?

List of Articles
번호 분류 제목 날짜 조회 수
151 주식 이건희 회장의 경영복귀와 스마트폰 2010.03.25 10655
150 주식 유상증자액이 시가총액보다 높은 쎄라텍 분석 2009.08.25 10094
149 주식 유니온 절대바닥 2015.12.23 781
148 주식 유니온 매수로 고민중인 상태에서 한번쯤 생각해보고자 정리합니다. file 2015.06.08 2509
147 주식 위기의 세계경제 역사 secret 2016.02.04 464
146 주식 워런버펫이 왜 사양산업인 신문사를 인수할까? 2013.05.08 8287
145 주식 외국인은 바이코리아 내주식은 셀코리아?~ 2014.07.29 3426
144 주식 오늘이 마지막 폭락이면 좋겠다 secret 2015.11.13 437
143 주식 오늘의 시황 2016.01.07 776
142 주식 옐런 의장, 12월 기준금리 인상 확실시 되는 발언에 인상폭은? 2015.12.02 835
141 주식 여기서 2배 못먹으면 주식 그만둬라 = 홀딩해서 무증받으면 2배간다 2010.04.08 4363
140 주식 어떤 종목이 좋은 종목인가요? file 2016.10.19 1561
139 주식 아진산업 기업분석 및 전망 2023.03.13 7449
138 주식 아이투자 -5년동안 roe 15%이상 유지 file 2014.04.18 3060
137 주식 쌍용머티리얼 양수체결 유니온 대주주와 외국인은 확신을 가졌나? file 2016.12.22 2019
136 주식 신화실업 홍보물 - 15000원이면 지르자. file 2015.12.10 2320
135 주식 신종플루에 자신있던 정부의 태도 바뀌나? 1 2009.08.21 6642
134 주식 신종플루 강력한 위험과 더불어 관련주 초강세 2009.08.17 7271
133 주식 시골의사 박경철의 다시쓰는 기술적 분석 2014.04.01 5750
132 주식 스스로를 고수라 칭하는자 2012.12.04 3456
Board Pagination Prev 1 2 3 4 5 6 ... 11 Next
/ 11

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소