-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode (No comment).txt
More file actions
133 lines (114 loc) · 2.39 KB
/
Code (No comment).txt
File metadata and controls
133 lines (114 loc) · 2.39 KB
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
#include <Keypad.h>
#include <LiquidCrystal.h>
#include <Servo.h>
Servo myservo;
//rs, en, d4, d5, d6, d7
LiquidCrystal lcd(10, 11, A0, A1, A2, A3);
#define Password_Lenght 7
int pos = 0;
char Data[Password_Lenght];
char Master[Password_Lenght] = "ABCD79";
byte data_count = 0, master_count = 0;
bool Pass_is_good;
char customKey;
int buzz=12;
const byte ROWS = 4;
const byte COLS = 4;
char keys[ROWS][COLS] = {
{'1', '2', '3', 'A'},
{'4', '5', '6', 'B'},
{'7', '8', '9', 'C'},
{'*', '0', '#', 'D'}
};
bool door = true;
byte rowPins[ROWS] = {1, 2, 3, 4};
byte colPins[COLS] = {5, 6, 7, 8};
Keypad customKeypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS);
void setup()
{
pinMode(buzz, OUTPUT);
myservo.attach(9);
ServoClose();
lcd.begin(16, 2);
lcd.print("Arduino Door");
lcd.setCursor(0, 1);
lcd.print("--Look project--");
delay(3000);
lcd.clear();
}
void loop()
{
if (door == 0)
{
customKey = customKeypad.getKey();
if (customKey == '#')
{
lcd.clear();
ServoClose();
lcd.print(" Door is close");
delay(3000);
door = 1;
}
}
else Open();
}
void clearData()
{
while (data_count != 0)
{ // This can be used for any array size,
Data[data_count--] = 0;
}
return;
}
void ServoOpen()
{
for (pos = 180; pos >= 0; pos -= 5) {
// in steps of 1 degree
myservo.write(pos);
delay(15);
}
}
void ServoClose()
{
for (pos = 0; pos <= 180; pos += 5) {
myservo.write(pos);
delay(15);
}
}
void Open()
{
lcd.setCursor(0, 0);
lcd.print(" Enter Password");
customKey = customKeypad.getKey();
if (customKey)
{
Data[data_count] = customKey;
lcd.setCursor(data_count, 1);
lcd.print(Data[data_count]); // If you want to see password on LCD display.
//lcd.print("*"); // If you don't want to see password on LCD display.
digitalWrite(buzz, HIGH);
delay(100);
digitalWrite(buzz, LOW);
data_count++;
}
if (data_count == Password_Lenght - 1)
{
if (!strcmp(Data, Master))
{
lcd.clear();
ServoOpen();
lcd.print(" Door is Open");
door = 0;
}
else
{
lcd.clear();
lcd.print(" Wrong Password");
digitalWrite(buzz, HIGH);
delay(10000);
digitalWrite(buzz, LOW);
door = 1;
}
clearData();
}
}