-
Notifications
You must be signed in to change notification settings - Fork 1
/
Corona_ventilator_2020MAR26.ino
352 lines (336 loc) · 8.08 KB
/
Corona_ventilator_2020MAR26.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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 10, 11, 12, 13);
#define in1 7 ////// driver Input 1
#define in2 6 ////// driver Input 2
#define motor_speed 5 ////// driver Input PWM
#define pot A5 /////// Potentiometer
int pot_speed = 0;
#define buttonPin A0 //////// count limit switch
// Variables will change:
int buttonPushCounter = 0; // counter for the number of button presses
int buttonState = 0; // current state of the button
int lastButtonState = 0; // previous state of the button
#define but2 5 /////// count reset/exit switch
#define up_but 3 /////// up navigation
#define down_but 4 /////// down navigation
#define ok_but 2 /////// ok button
int but1buf = 1;
int but2buf = 1;
int up_buf = 1;
int down_buf = 1;
int ok_buf = 1;
int exit_buf = 1;
int i=0;
int flag = 0;
void setup()
{
Serial.begin(9600);
pinMode(buttonPin,INPUT_PULLUP);
pinMode(but2,INPUT_PULLUP);
pinMode(up_but,INPUT_PULLUP);
pinMode(down_but,INPUT_PULLUP);
pinMode(ok_but,INPUT_PULLUP);
pinMode(pot,INPUT);
pinMode(in1, OUTPUT);
pinMode(in2, OUTPUT);
pinMode(motor_speed, OUTPUT);
lcd.begin(16, 2);
lcd.setCursor(0,0);
lcd.print("WELCOME");
delay(1000);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("CORONA");
lcd.setCursor(0,1);
lcd.print("VENTILATOR");
//digitalWrite(in1, LOW);
//digitalWrite(in2, HIGH);
delay(2000);
}
void loop()
{
menu();
count();
}
void count()
{
buttonState = digitalRead(buttonPin);
if (buttonState != lastButtonState) {
if (buttonState == HIGH) {
buttonPushCounter++;
}
else {}
}
delay(50);
lastButtonState = buttonState;
//but1buf = digitalRead(but1);
lcd.setCursor(12,1);
lcd.print(buttonPushCounter);
Serial.println(buttonPushCounter);
}
void TurnOFF_motor(){
buttonPushCounter = 0;
digitalWrite(in1, LOW);
digitalWrite(in2, LOW);
analogWrite(motor_speed,0);
}
void TurnMotor_speed1()
{
digitalWrite(in1, LOW);
digitalWrite(in2, HIGH);
analogWrite(motor_speed,85);
}
void TurnMotor_speed2()
{
digitalWrite(in1, LOW);
digitalWrite(in2, HIGH);
analogWrite(motor_speed,170);
}
void TurnMotor_speed3()
{
digitalWrite(in1, LOW);
digitalWrite(in2, HIGH);
analogWrite(motor_speed,255);
}
void pot_control()
{
delay(1000);
lcd.clear();
while(1)
{
count();
int pot_val = analogRead(A5);
pot_speed = map(pot_val, 0, 1023, 0, 255);
digitalWrite(in1, LOW);
digitalWrite(in2, HIGH);
analogWrite(motor_speed,pot_speed);
lcd.setCursor(0,0);
lcd.print("1.Speed :");
lcd.setCursor(11,0);
lcd.print(pot_speed);
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Stop");
flag = 7;
delay(200);
if (digitalRead(ok_but) == 0)
{
TurnOFF_motor();
break;
}
}
}
/*void speed_select()
{
speed1_buf = digitalRead(speed_but1);
speed2_buf = digitalRead(speed_but2);
speed3_buf = digitalRead(speed_but3);
delay(500);
}*/
void menu()
{
up_buf = digitalRead(up_but);
down_buf = digitalRead(down_but);
ok_buf = digitalRead(ok_but);
if(digitalRead(down_but) == 0 && flag == 0)
{ Serial.println("loop 1");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Speed controls");
lcd.setCursor(15,0);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Manual");
flag = 1;
delay(1000);
}
if(digitalRead(down_but) == 0 && flag == 1)
{ Serial.println("loop 2");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Speed controls");
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Manual");
flag = 2;
delay(1000);
}
if(digitalRead(up_but) == 0 && flag == 2)
{ Serial.println("loop 3");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Speed controls");
lcd.setCursor(15,0);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Manual");
flag = 1;
delay(1000);
}
if(digitalRead(ok_but) == 0 && flag == 1) ////////////////////////// Speed control
{ Serial.println("loop 4");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Slow");
lcd.setCursor(15,0);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Medium");
flag = 3;
delay(1000);
}
if(digitalRead(down_but) == 0 && flag == 3)
{ Serial.println("loop 5");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Slow");
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Medium");
flag = 4;
delay(1000);
}
if(digitalRead(down_but) == 0 && flag == 4)
{ Serial.println("loop 6");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("3.Fast");
lcd.setCursor(15,0);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("4.Exit");
flag = 5;
delay(1000);
}
if(digitalRead(down_but) == 0 && flag == 5)
{ Serial.println("loop 7");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("3.Fast");
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("4.Exit");
flag = 6;
delay(1000);
}
if(digitalRead(up_but) == 0 && flag == 6)
{ Serial.println("loop 8");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("3.Fast");
lcd.setCursor(15,0);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("4.Exit");
flag = 5;
delay(1000);
}
if(digitalRead(up_but) == 0 && flag == 5)
{ Serial.println("loop 9");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Slow");
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Medium");
flag = 4;
delay(1000);
}
if(digitalRead(up_but) == 0 && flag == 4)
{ Serial.println("loop 10");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Slow");
lcd.setCursor(15,0);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Medium");
flag = 3;
delay(1000);
}
if(digitalRead(ok_but) == 0 && flag == 3) ////////////////// speed SLOW
{ Serial.println("loop 11");
TurnMotor_speed1();
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Slow...");
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("Exit");
flag = 7;
delay(1000);
}
if(digitalRead(ok_but) == 0 && flag == 4) ////////////////// speed Medium
{ Serial.println("loop 12");
TurnMotor_speed2();
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Medium...");
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("Exit");
flag = 7;
delay(1000);
}
if(digitalRead(ok_but) == 0 && flag == 5) ////////////////// speed Fast
{ Serial.println("loop 13");
TurnMotor_speed3();
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Fast...");
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("Exit");
flag = 7;
delay(1000);
}
if(digitalRead(ok_but) == 0 && flag == 6)//////////////// exit
{ Serial.println("loop 14");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Speed controls");
lcd.setCursor(15,0);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Manual");
TurnOFF_motor();
flag = 1;
delay(1000);
}
if(digitalRead(ok_but) == 0 && flag == 7)
{ Serial.println("loop 15");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Speed controls");
lcd.setCursor(15,0);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Manual");
TurnOFF_motor();
flag = 1;
delay(1000);
}
if(digitalRead(ok_but) == 0 && flag == 2) //////////////////////////////////// Manual
{ Serial.println("loop 16");
pot_control();
lcd.clear();
lcd.setCursor(0,0);
lcd.print("1.Speed :");
lcd.setCursor(11,0);
lcd.print(pot_speed);
lcd.setCursor(15,1);
lcd.print("<");
lcd.setCursor(0,1);
lcd.print("2.Exit");
flag = 7;
delay(1000);
}
}