본문 바로가기
IOT 로봇 아두이노/아두이노 센서 및 엑츄에이터

LCD

by Jango_infoinno 2021. 4. 28.

16x2 LCD 모듈

 

16x2 LCD 모듈 16x2 LCD 모듈 핀아웃

 

핀 구성

 

데이터시트

components101.com/displays/16x2-lcd-pinout-datasheet

 

16x2 LCD Module: Pinout, Diagrams, Description & Datasheet

16×2 LCD is named so because it has 16 Columns and 2 Rows so it will have 32 characters in total and each character will be made of 5×8 Pixel Dots.

components101.com

 

L2C 통신

 

I2C LCD의 I2C 주소 확인하기

#include <Wire.h>

void setup()
{
  Wire.begin();

  Serial.begin(9600);
  while (!Serial);           
  Serial.println("\nI2C Scanner");
}

void loop()
{
  byte error, address;
  int nDevices;
  Serial.println("Scanning...");
  nDevices = 0;
  for(address = 1; address < 127; address++ ) 
  {
    Wire.beginTransmission(address);
    error = Wire.endTransmission();

    if (error == 0)
    {
      Serial.print("I2C device found at address 0x");
      if (address<16) 
        Serial.print("0");
      Serial.print(address,HEX);
      Serial.println("  !");
      nDevices++;
    }
    else if (error==4) 
    {
      Serial.print("Unknow error at address 0x");
      if (address<16) 
        Serial.print("0");
      Serial.println(address,HEX);
    }    
  }

  if (nDevices == 0)
    Serial.println("No I2C devices found\n");
  else
    Serial.println("done\n");
  delay(5000);
}
반응형

'IOT 로봇 아두이노 > 아두이노 센서 및 엑츄에이터' 카테고리의 다른 글

브레드 보드 BreadBoard  (0) 2021.03.30
LED 5mm  (0) 2021.03.17

댓글