-
Notifications
You must be signed in to change notification settings - Fork 0
/
arduino-sketch.c
221 lines (200 loc) · 3.47 KB
/
arduino-sketch.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
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
char letters[63] = {0,108,
107,
47,
106,
59,
112,
8,
102,
0,
0,
118,
0,
116,
114,
0,
100,
0,
0,
99,
0,
103,
101,
0,
113,
111,
105,
0,
117,
0,
0,
0,
115,
32,
0,
120,
0,
98,
119,
13,
97,
110,
104,
0,
121,
0,
0,
0,
122,
46,
44,
0,
109,
0,
0,
0,
9,
0,
0,
0,
0,
0,
0,
};
int oldOne = HIGH;
int oldTwo = HIGH;
int oldThree = HIGH;
int oldFour = HIGH;
int oldFive = HIGH;
int oldSix = HIGH;
int bits = 0;
int newOne;
int newTwo;
int newThree;
int newFour;
int newFive;
int newSix;
unsigned long lastDebounceTime = 0; // the last time the output pin was toggled
unsigned long debounceDelay = 1; // the debounce time; increase if the output flickers
void setup() {
//start serial connection
Serial.begin(9600);
//configure pins as an input and enable the internal pull-up resistor
pinMode(5,INPUT_PULLUP); // l
pinMode(3,INPUT_PULLUP); // k
pinMode(2,INPUT_PULLUP); // j
pinMode(A5,INPUT_PULLUP); // f
pinMode(A2,INPUT_PULLUP); // d
pinMode(A0,INPUT_PULLUP); // s
}
void loop() {
//read the pushbutton value into a variable
int One = digitalRead(5);
int Two = digitalRead(3);
int Three = digitalRead(2);
int Four = digitalRead(A5);
int Five = digitalRead(A2);
int Six = digitalRead(A0);
if (oldOne != One) {
lastDebounceTime = millis();
}
if ((millis() - lastDebounceTime) > debounceDelay) {
if (One != newOne) {
newOne = One;
if (newOne == LOW) {
bits |= 1;
} else {
if ( letters[bits] > 0 ) {
Serial.println(letters[bits]);
}
bits = 0;
}
}
}
if (oldTwo != Two) {
lastDebounceTime = millis();
}
if ((millis() - lastDebounceTime) > debounceDelay) {
if (Two != newTwo) {
newTwo = Two;
if (newTwo == LOW) {
bits |= 2;
} else {
if ( letters[bits] > 0 ) {
Serial.println(letters[bits]);
}
bits = 0;
}
}
}
if (oldThree != Three) {
lastDebounceTime = millis();
}
if ((millis() - lastDebounceTime) > debounceDelay) {
if (Three != newThree) {
newThree = Three;
if (newThree == LOW) {
bits |= 4;
} else {
if ( letters[bits] > 0 ) {
Serial.println(letters[bits]);
}
bits = 0;
}
}
}
if (oldFour != Four) {
lastDebounceTime = millis();
}
if ((millis() - lastDebounceTime) > debounceDelay) {
if (Four != newFour) {
newFour = Four;
if (newFour == LOW) {
bits |= 8;
} else {
if ( letters[bits] > 0 ) {
Serial.println(letters[bits]);
}
bits = 0;
}
}
}
if (oldFive != Five) {
lastDebounceTime = millis();
}
if ((millis() - lastDebounceTime) > debounceDelay) {
if (Five != newFive) {
newFive = Five;
if (newFive == LOW) {
bits |= 16;
} else {
if ( letters[bits] > 0 ) {
Serial.println(letters[bits]);
}
bits = 0;
}
}
}
if (oldSix != Six) {
lastDebounceTime = millis();
}
if ((millis() - lastDebounceTime) > debounceDelay) {
if (Six != newSix) {
newSix = Six;
if (newSix == LOW) {
bits |= 32;
} else {
if ( letters[bits] > 0 ) {
Serial.println(letters[bits]);
}
bits = 0;
}
}
}
oldOne = One;
oldTwo = Two;
oldThree = Three;
oldFour = Four;
oldFive = Five;
oldSix = Six;
}