반응형
아두이노로 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(0x3F, 16, 2);
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
반응형
'아두이노' 카테고리의 다른 글
인터넷 현재 시간 받기 #2 [아두이노/ESP8266] (6) | 2018.01.29 |
---|---|
비트코인 시세 모니터 만들기 [아두이노/ESP8266] (2) | 2018.01.28 |
아두이노를 버튼으로 제어하기 (0) | 2017.12.29 |
아두이노로 자동 로그인 장치 만들기 (16) | 2017.12.23 |
wemos d1으로 인터넷 시계 만들기 (0) | 2017.11.14 |