-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.c
138 lines (106 loc) · 2.82 KB
/
code.c
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#define sens1_BLUE 8
#define sens1_RED 9
#define sens1_GREEN 10
#define sens1_BUZZER 11
#define sens2_BLUE 4
#define sens2_RED 5
#define sens2_GREEN 6
#define sens2_BUZZER 7
int normalLeak = 420;
int worstleek = 670;
int Value01;
int Value02;
void setup() {
// put your setup code here, to run once:
pinMode(sens1_BLUE,OUTPUT);
pinMode(sens1_RED,OUTPUT);
pinMode(sens1_GREEN,OUTPUT);
pinMode(sens1_BUZZER,OUTPUT);
pinMode(sens2_BLUE,OUTPUT);
pinMode(sens2_RED,OUTPUT);
pinMode(sens2_GREEN,OUTPUT);
pinMode(sens2_BUZZER,OUTPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
sensorONE();
sensorTWO();
}
void sensorONE(){
Value01 = analogRead(A0);
Serial.print("Sensor one value is : ");
Serial.print(Value01);
Serial.print(" ");
if(Value01 < worstleek && Value01 >= normalLeak)
{
digitalWrite(sens1_BLUE,LOW);
digitalWrite(sens1_GREEN,LOW);
digitalWrite(sens1_RED,HIGH);
int num1 = millis();
num1 = num1 / 1000;
if(num1 % 2)
{
// Serial.print("|| Sensor one beep is : ");
// Serial.println(num1);
// Serial.println("");
digitalWrite(sens1_BUZZER,HIGH);
}
else
{
digitalWrite(sens1_BUZZER,LOW);
}
}
else if(Value01 >= worstleek)
{
digitalWrite(sens1_BLUE,LOW);
digitalWrite(sens1_GREEN,LOW);
digitalWrite(sens1_RED,HIGH);
digitalWrite(sens1_BUZZER,HIGH);
}
else{
digitalWrite(sens1_BLUE,LOW);;
digitalWrite(sens1_GREEN,HIGH);
digitalWrite(sens1_RED,LOW);
digitalWrite(sens1_BUZZER,LOW);
}
}
void sensorTWO(){
Value02 = analogRead(A1);
Serial.print("Sensor two value is : ");
Serial.print(Value02);
Serial.print(" ");
if(Value02 < worstleek && Value02 >= normalLeak)
{
digitalWrite(sens2_BLUE,LOW);
digitalWrite(sens2_GREEN,LOW);
digitalWrite(sens2_RED,HIGH);
int num = millis();
num = num / 1000;
if(num % 2)
{
// Serial.print("|| Sensor two beep is : ");
// Serial.println(num);
// Serial.println("");
digitalWrite(sens2_BUZZER,HIGH);
}
else
{
digitalWrite(sens2_BUZZER,LOW);
}
}
else if(Value02 >= worstleek)
{
digitalWrite(sens2_BLUE,LOW);
digitalWrite(sens2_GREEN,LOW);
digitalWrite(sens2_RED,HIGH);
digitalWrite(sens2_BUZZER,HIGH);
}
else{
digitalWrite(sens2_BLUE,LOW);;
digitalWrite(sens2_GREEN,HIGH);
digitalWrite(sens2_RED,LOW);
digitalWrite(sens2_BUZZER,LOW);
}
Serial.println("");
}