정보나눔

오픈소스하드웨어 프로젝트에 대한 다양한 정보를 나누는 공간입니다.

아날로그 핀을 이용하여 lcd를 나타내고 싶습니다.
김범식 | 2016-08-30

A0=13

A1=14 ...15..16...17~19까지

 

디지털 핀으로 사용할수 있다는 이야기를 들었습니다, 이를 이용하여 lcd 6개의 핀으로 이용하고 싶어

 

#include <LiquidCrystal.h>
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);
}

#include <LiquidCrystal.h>
LiquidCrystal lcd(13,14,15,16,17,18,19); 를 바꿨는데

lcd 화면에 출력이 되지않네요, 무엇이 문제인가요

 

 

 

이전글   |    자전거 안전장치를 만들고 있습니다. 도움 부탁드립니다.... 2016-08-30
다음글   |    오렌지 보드 문제 해결 부탁드립니다. 2016-08-31