-
Notifications
You must be signed in to change notification settings - Fork 0
/
PCF8591(Analog Sensor).ino
62 lines (55 loc) · 1.24 KB
/
PCF8591(Analog Sensor).ino
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// 첫번째가 조도
// 두번째 온도
// 세번째가 다이렉트
//네번째가 가변저항
#include "Wire.h"
#define PCF8591 (0x90 >> 1)
#include <LiquidCrystal_I2C.h> // LiquidCrystal_I2C 헤더파일 호출
LiquidCrystal_I2C lcd(0x27, 16, 2); // LCD의 address 주소 및 크기 입력
byte adcvalue0, adcvalue1, adcvalue2, adcvalue3;
int led =13;
void setup()
{
Wire.begin();
Serial.begin(9600);
pinMode(led,OUTPUT);
lcd.init(); // LCD 초기화
lcd.backlight(); // LCD 백라이트 함수
}
void loop()
{
Wire.beginTransmission(PCF8591);
Wire.write(0x04);
Wire.endTransmission();
Wire.requestFrom(PCF8591, 5);
adcvalue0=Wire.read();
adcvalue0=Wire.read();
adcvalue1=Wire.read();
adcvalue2=Wire.read();
adcvalue3=Wire.read();
Serial.print(adcvalue0);
Serial.print(" ,");
Serial.print(adcvalue1);
Serial.print(" ,");
Serial.print(adcvalue2);
Serial.print(" ,");
Serial.print(adcvalue3);
Serial.println();
if (adcvalue0 <220){
digitalWrite(led, LOW);
}
else if(adcvalue0 == 255){
digitalWrite(led,LOW);
}
else{
digitalWrite(led, HIGH);
}
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("direct:");
lcd.print(adcvalue2);
lcd.setCursor(0,1);
lcd.print("registor:");
lcd.print(adcvalue3);
delay(1000);
}