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

아두이노와 1602 LCD 연결

조회 수 15473 추천 수 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
번호 분류 제목 날짜 조회 수
857 파이썬 파이썬 변수전달하기 2021.09.05 1445
856 파이썬 파이썬 변수내용 문자열 자르기 특이한 점 2021.09.27 2965
855 컴퓨터잡담 파이썬 변수값에서 숫자만 추출하기 2021.07.28 1141
854 파이썬 파이썬 변수가 정의되었는지 여부 확인방법코드 2023.03.04 3923
853 컴퓨터잡담 파이썬 문자열b 안에 변수 a를 대치시키려면 크게 세 가지 방법 2021.06.18 2582
852 파이썬 파이썬 모듈 업그레이드 명령어 2023.02.21 3625
851 컴퓨터잡담 파이썬 멀티라벨 소스 줄이기 2021.06.23 1616
850 파이썬 파이썬 매수할 피라미드 매수전략 2021.09.06 1853
849 컴퓨터잡담 파이썬 리스트에 데이터 삽입하기 2021.06.22 1707
848 파이썬 파이썬 랜덤으로 시험문제 풀기 file 2023.10.04 67811
847 파이썬 파이썬 랜덤으로 문제풀기 #2 2023.10.04 71573
846 컴퓨터잡담 파이썬 동행복권 판매인 모집 공고 발생시 자동알림 2021.03.16 2272
845 컴퓨터잡담 파이썬 다음 증권의 주가 가져오기 2021.08.22 1452
844 컴퓨터잡담 파이썬 네이버라인 메시지 보내기 2021.08.22 1478
843 컴퓨터잡담 파이썬 네이버 증권 주식 현재가 가져오기 2021.09.06 1462
842 파이썬 파이썬 글자 인식, 파이썬 OCR, 파이썬 Tesseract 사용 2022.11.21 14641
841 파이썬 파이썬 구글스프레드시트 값 불러오기 html로 변환작업 중! 2022.05.08 20186
840 컴퓨터잡담 파이썬 게시물 검색으로 새로운 게시물 등록시 지메일로 파일 보내기 2021.06.14 2043
839 파이썬 파이썬 requestsbeautifulsoup 으로 웹 input에 입력값 대입한 뒤 결과값 파일로 저장하기 2023.11.13 59399
838 컴퓨터잡담 파이썬 request, beautifulshop으로 정액정보 받아오기 2023.09.29 71862
Board Pagination Prev 1 2 3 4 5 6 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


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

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

설치 취소