아두이노 I2C 주소 스캔하기
아두이노

아두이노 I2C 주소 스캔하기

반응형

아두이노로 I2C 통신을 할 때 그 주소값이 필요하다. 예를들어 I2C 통신을 하는 LCD 작동예제를 보면

 

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
 
LiquidCrystal_I2C lcd(0x3F162);
 
void setup()
{
  lcd.begin(); 
  lcd.backlight();
  lcd.print("Hello, world!");
 
void loop(){
}
cs

 

4번째 줄의 0x3F가 바로 그 주소값이다.

대부분의 경우 이 주소값은 0x3F로 설정되어있지만 가끔은 다르기도 한다. 이 주소값을 찾는 방법은 아래의 코드를 업로드 시켜보는 것이다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <Wire.h>
 
void setup()
{
  Wire.begin();
  Serial.begin(9600);
  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);          
}
cs

 

위 코드를 업로드 한 후 시리얼 모니터를 열어보면 아래와 같은 내용이 출력된다.

출처 : https://playground.arduino.cc/Main/I2cScanner

 

 

반응형
    # 테스트용