-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
434 lines (409 loc) · 7.84 KB
/
main.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
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
#include "headers/led.h"
#include "headers/lcd.h"
#include "headers/utils.h"
#include "headers/swt.h"
#include "headers/btn.h"
#include "headers/audio.h"
#include "headers/rgbled.h"
#include "headers/ssd.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <xc-pic32m.h>
#include <stdbool.h>
#pragma config JTAGEN = OFF
#pragma config FWDTEN = OFF
/* ------------------------------------------------------------ */
/* Configuration Bits */
/* ------------------------------------------------------------ */
// Device Config Bits in DEVCFG1:
#pragma config FNOSC = FRCPLL
#pragma config FSOSCEN = OFF
#pragma config POSCMOD = XT
#pragma config OSCIOFNC = ON
#pragma config FPBDIV = DIV_2
// Device Config Bits in DEVCFG2:
#pragma config FPLLIDIV = DIV_2
#pragma config FPLLMUL = MUL_20
#pragma config FPLLODIV = DIV_1
// Prototypes
void init(void);
void sesamOpen();
void toggleRGB();
int switchSelected();
int checkPin(int sentPin[], int pin[]);
void displaySegment(int enteredPin[]);
int swtChanged();
void displayWrongPINMessage(void);
void resetPIN(int rPin[]);
void displayEnterPINMessage(void);
void insertPINBySwitches(int pin[]);
int checkSafe(int pin[]);
void LEDTogglBySwitch();
int BTNPressed(unsigned char btnLetter);
int main(void)
{
int pin[4] = {0, 1, 2, 3};
init();
//lisa oma kood siia
return 0;
}
/* ------------------------------------------------------------ */
/*** init
**
** Parameters:
**
**
** Return Value:
**
**
** Description:
** Initialize LED, LCD, SWT, BTN, RGBLED and SSD(Seven segment display) modules.
** This is needed to prepare hardware for modules.
**
*/
void init(void)
{
LED_Init();
LCD_Init();
SWT_Init();
BTN_Init();
RGBLED_Init();
SSD_Init();
}
/* ------------------------------------------------------------ */
/*** sesamOpen
**
** Parameters:
**
**
** Return Value:
**
**
** Description:
** Displays confirmation message on success.
**
*/
void sesamOpen()
{
LCD_WriteStringAtPos("PIN kood on OK!", 0, 0);
}
/* ------------------------------------------------------------ */
/*** toggleRGB
**
** Parameters:
**
**
** Return Value:
**
**
** Description:
** Flash red, green and blue RGBLed
** NB! This function does not exit!
** Remember to use this at the end if your code!
**
*/
void toggleRGB()
{
int i;
for (i = 0; i < 3; i++)
{
switch (i)
{
case 0:
RGBLED_SetValue(255, 0, 0); //RED
break;
case 1:
RGBLED_SetValue(0, 255, 0); //GREEN
break;
case 2:
RGBLED_SetValue(0, 0, 255); //BLUE
i = -1;
}
DelayAprox10Us(1000);
}
}
/* ------------------------------------------------------------ */
/*** switchSelected
**
** Parameters:
**
**
** Return Value:
** int i - number of the switch that was enabled between 0 - 7
**
**
** Description:
** Only returns value if there is a switch turned on,
** in case of multiple switches on, returns first found
**
*/
int switchSelected()
{
int i;
for (i = 0; i < 8; i++)
{
if (SWT_GetValue(i)) return i;
}
}
/* ------------------------------------------------------------ */
/*** checkPin
**
** Parameters:
** int sentPin[] - Pin that the user entered
** int pin[] - Correct pin
**
** Return Value:
** int - Value of true and false if sentPin matched
** 0 when pin was wrong
** 1 when pin was correct
**
** Description:
** Compares 4 digit pin with another 4 digit pin
** Returns 1 or 0 based on result
**
*/
int checkPin(int sentPin[], int pin[])
{
int i;
for (i = 0; i < 4; i++)
{
if (sentPin[i] != pin[i])
{
return 0;
}
}
return 1;
}
/* ------------------------------------------------------------ */
/*** displaySegment
**
** Parameters:
** int enteredPin[]- pin from user input
**
** Return Value:
**
**
** Description:
** Map entered pin to SSD (Seven Segment Display)
** Its mapped from right to left
**
*/
void displaySegment(int enteredPin[])
{
SSD_WriteDigits(enteredPin[3], enteredPin[2], enteredPin[1], enteredPin[0],
0, 0, 0, 0);
}
/* ------------------------------------------------------------ */
/*** swtChanged
**
** Parameters:
**
** Return Value:
** int - Boolean if any swt is active
** 0 when none active
** 1 when any is active
**
** Description:
** Shows if any of the switches is active
**
*/
int swtChanged()
{
if (SWT_GetGroupValue() > 0)
{
return 1;
}
else
{
return 0;
}
}
/* ------------------------------------------------------------ */
/*** displayWrongPINMessage
**
** Parameters:
**
** Return Value:
**
** Description:
** Displays "Vale PIN kood!" on the LCD screen
**
**
*/
void displayWrongPINMessage(void)
{
LCD_DisplayClear();
LCD_WriteStringAtPos("Vale PIN kood!", 0, 0);
DelayAprox10Us(5000);
}
/* ------------------------------------------------------------ */
/*** displayEnterPINMessage
**
** Parameters:
**
** Return Value:
**
** Description:
** Displays "Sisesta PIN kood!" on the LCD screen
**
**
*/
void displayEnterPINMessage(void)
{
LCD_DisplayClear();
LCD_WriteStringAtPos("Sisesta PIN kood", 0, 0);
}
/* ------------------------------------------------------------ */
/*** resetPIN
**
** Parameters:
** int rPin[] - PIN code, which is going to be reseted
**
** Return Value:
**
** Description:
** Resets PIN code by putting all numbers to zero .
** rPin[] = {0, 0 ,0, 0}
**
*/
void resetPIN(int rPin[])
{
rPin[0] = 0;
rPin[1] = 0;
rPin[2] = 0;
rPin[3] = 0;
}
/* ------------------------------------------------------------ */
/*** insertPINBySwitches
**
** Parameters:
** int Pin[] - PIN code, which is going to entered
**
** Return Value:
**
** Description:
** Let user to insert safe PIN code by switches(number by number)
** Displays flipped switch number on the segment display.
** Function ends when the PIN code is entered.
**
*/
void insertPINBySwitches(int pin[])
{
//Counter
int pinCounter = 0;
// check if pin is correct
bool input = false;
//init-reset PIN to 0,0,0,0
resetPIN(pin);
while (true)
{
//listen to swt inputs
displaySegment(pin);
if (swtChanged())
{
if (!input)
{
input = true;
pin[pinCounter] = switchSelected();
pinCounter++;
}
}
else
{
input = false;
}
if (pinCounter == 4)
{
displaySegment(pin);
break;
}
DelayAprox10Us(1000);
}
}
/* ------------------------------------------------------------ */
/*** checkSafe
**
** Parameters:
** int pin[] - Value of user set pin as an array
**
** Return Value:
** int result - Shows if safe is opened
** 1 when safe is opened
**
** Description:
** Lets user input values from switches and displays instructions
** on LCD for what to do. Only exits (with 1) when pins match.
**
*/
int checkSafe(int pin[])
{
// result 0 = false
// result 1 = true
int result = 0;
int enteredPin[4];
//counter
int i;
while (true)
{
displayEnterPINMessage();
insertPINBySwitches(enteredPin);
if (checkPin(enteredPin, pin) == 1)
{
LCD_DisplayClear();
result = 1;
break;
}
else
{
displayWrongPINMessage();
}
}
return result;
}
/* ------------------------------------------------------------ */
/*** LEDTogglBySwitch
**
** Parameters:
**
** Return Value:
**
**
** Description:
** Flips LED on or off based on SWT state.
** Example: SWT 0 is on, so LED 0 is on
**
*/
void LEDTogglBySwitch()
{
int i;
for (i = 0; i < 8; i++)
{
LED_SetValue(i, SWT_GetValue(i));
}
}
/* ------------------------------------------------------------ */
/*** BTNPressed
**
** Parameters:
** btnLetter - letter of button on board
** 'R' , 'L' , 'U', 'D', 'C'
**
** Return Value:
** 1 - if chosen button is pressed
**
** Description:
** When chosen button is pressed down, a function returns 1,
** otherwise function is running
**
*/
int BTNPressed(unsigned char btnLetter)
{
while(true)
{
if (BTN_GetValue(btnLetter)) // true, if button is pressed
{
return 1;
}
}
}