-
Notifications
You must be signed in to change notification settings - Fork 2
/
Car_Parking_System.vhd
502 lines (389 loc) · 9.63 KB
/
Car_Parking_System.vhd
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity counter is
port (
clk: in std_logic;
count_out: out integer
);
end counter;
architecture behavior of counter is
begin
process(clk)
variable count : integer := 0;
begin
if (clk'event) AND (clk = '1') then
if (count = 1000000) then
count := 0;
else
count := count + 1;
end if;
end if;
count_out <= count;
end process;
end behavior;
-----------------------------------------------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity comparator is
port (
switch: in std_logic;
count: in integer;
PWM: out std_logic
);
end comparator;
architecture behavior of comparator is
begin
process(count,switch)
begin
if (switch = '0') then
if (count < 55000) then
PWM <= '1';
else
PWM <= '0';
end if;
else
if (count < 100000) then
PWM <= '1';
else
PWM <= '0';
end if;
end if;
end process;
end behavior;
-----------------------------------------------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity servo_motor is
port (
clk1: in std_logic;
switch1: in std_logic;
PWM1: out std_logic
);
end servo_motor;
architecture behavior of servo_motor is
signal count_out1: integer;
component counter
port (
clk: in std_logic;
count_out: out integer
);
end component;
component comparator
port (
switch: in std_logic;
count: in integer;
PWM: out std_logic
);
end component;
begin
counter1 : counter port map (clk1,count_out1);
comparator1 : comparator port map (switch1,count_out1,PWM1);
end behavior;
-----------------------------------------------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity clk_generator_1Hz is
port (
clk: in std_logic;
clk_out: out std_logic
);
end clk_generator_1Hz;
architecture behavior of clk_generator_1Hz is
signal clk_signal : std_logic;
begin
process(clk)
variable count : integer;
begin
if (clk'event) AND (clk = '1') then
if (count = 24999999) then
clk_signal <= NOT (clk_signal);
count := 0;
else
count := count + 1;
end if;
end if;
end process;
clk_out <= clk_signal;
end behavior;
-----------------------------------------------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity clk_generator_2Hz is
port (
clk: in std_logic;
clk_out: out std_logic
);
end clk_generator_2Hz;
architecture behavior of clk_generator_2Hz is
signal clk_signal : std_logic;
begin
process(clk)
variable count : integer;
begin
if (clk'event) AND (clk = '1') then
if (count = 12499999) then
clk_signal <= NOT (clk_signal);
count := 0;
else
count := count + 1;
end if;
end if;
end process;
clk_out <= clk_signal;
end behavior;
-----------------------------------------------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity Car_Parking_System is
port (
clock: in std_logic;
frontSensor,backSensor,flameSensor: in std_logic;
password: in std_logic_vector(9 downto 0);
greenLED,redLED: out std_logic;
buzzer: out std_logic;
servo: out std_logic;
countdownLeft,countdownRight,leftDisplay,rightDisplay: out std_logic_vector(6 downto 0)
);
end Car_Parking_System;
architecture behavior of Car_Parking_System is
type MyStates is (IDLE,WAIT_PASSWORD,WRONG_PASS,RIGHT_PASS,STOP,EMERGENCY);
signal currentState: MyStates := IDLE;
signal nextState: MyStates;
signal countdownSig: unsigned(4 downto 0) := "10100";
signal greenSig, redSig: std_logic;
signal servoSwitch: std_logic;
signal clk1Hz: std_logic;
signal clk2Hz: std_logic;
component clk_generator_1Hz is
port (
clk: in std_logic;
clk_out: out std_logic
);
end component;
component clk_generator_2Hz is
port (
clk: in std_logic;
clk_out: out std_logic
);
end component;
component servo_motor is
port (
clk1: in std_logic;
switch1: in std_logic;
PWM1: out std_logic
);
end component;
begin
clk_generator_1Hz0 : clk_generator_1Hz port map (clock,clk1Hz);
clk_generator_2Hz0 : clk_generator_2Hz port map (clock,clk2Hz);
servo_motor1 : servo_motor port map (clock,servoSwitch,servo);
process(clock) -- Here current state is updated
begin
if (clock'event) AND (clock = '1') then
currentState <= nextState;
end if;
end process;
process(currentState,frontSensor,backSensor,flameSensor,countdownSig) -- Here next state is decided
begin
case currentState is
when IDLE =>
if (flameSensor = '1') then
nextState <= EMERGENCY;
elsif (frontSensor = '0') then --ON
nextState <= WAIT_PASSWORD;
else
nextState <= IDLE;
end if;
when WAIT_PASSWORD =>
if (flameSensor = '1') then
nextState <= EMERGENCY;
else
if (countdownSig > "0000") then
nextState <= WAIT_PASSWORD;
else
if (password = "0101010101") then
nextState <= RIGHT_PASS;
else
nextState <= WRONG_PASS;
end if;
end if;
end if;
when WRONG_PASS =>
if (flameSensor = '1') then
nextState <= EMERGENCY;
elsif (password = "0101010101") then
nextState <= RIGHT_PASS;
else
nextState <= WRONG_PASS;
end if;
when RIGHT_PASS =>
if (flameSensor = '1') then
nextState <= EMERGENCY;
elsif (frontSensor='0') AND (backSensor = '0') then --ON
nextState <= STOP;
elsif (backSensor= '0') then --ON
nextState <= IDLE;
else
nextState <= RIGHT_PASS;
end if;
when STOP =>
if (flameSensor = '1') then
nextState <= EMERGENCY;
elsif (password = "0101010101") then
nextState <= RIGHT_PASS;
else
nextState <= STOP;
end if;
when EMERGENCY =>
if (flameSensor = '0') then
nextState <= IDLE;
else
nextState <= EMERGENCY;
end if;
when others => nextState <= IDLE;
end case;
end process;
process(clk1Hz)
begin
if (clk1Hz'event) AND (clk1Hz = '1') then
if (currentState = WAIT_PASSWORD) then
countdownSig <= countdownSig - 1;
else
countdownSig <= "10100";
end if;
end if;
end process;
process(countdownSig)
begin
case countdownSig is when "10100"=>
countdownLeft <= "0010010";
countdownRight <= "0000001";
when "10011"=>
countdownLeft <= "1001111";
countdownRight <= "0000100";
when "10010"=>
countdownLeft <= "1001111";
countdownRight <= "0000000";
when "10001"=>
countdownLeft <= "1001111";
countdownRight <= "0001111";
when "10000"=>
countdownLeft <= "1001111";
countdownRight <= "0100000";
when "01111"=>
countdownLeft <= "1001111";
countdownRight <= "0100100";
when "01110"=>
countdownLeft <= "1001111";
countdownRight <= "1001100";
when "01101"=>
countdownLeft <= "1001111";
countdownRight <= "0000110";
when "01100"=>
countdownLeft <= "1001111";
countdownRight <= "0010010";
when "01011"=>
countdownLeft <= "1001111";
countdownRight <= "1001111";
when "01010"=>
countdownLeft <= "1001111";
countdownRight <= "0000001";
when "01001"=>
countdownLeft <= "0000001";
countdownRight <= "0000100";
when "01000"=>
countdownLeft <= "0000001";
countdownRight <= "0000000";
when "00111"=>
countdownLeft <= "0000001";
countdownRight <= "0001111";
when "00110"=>
countdownLeft <= "0000001";
countdownRight <= "0100000";
when "00101"=>
countdownLeft <= "0000001";
countdownRight <= "0100100";
when "00100"=>
countdownLeft <= "0000001";
countdownRight <= "1001100";
when "00011"=>
countdownLeft <= "0000001";
countdownRight <= "0000110";
when "00010"=>
countdownLeft <= "0000001";
countdownRight <= "0010010";
when "00001"=>
countdownLeft <= "0000001";
countdownRight <= "1001111";
when others=>
countdownLeft <= "1111111";
countdownRight <= "1111111";
end case;
end process;
process(clk2Hz) -- change this clock to change the LED blinking period
begin
if (clk2Hz'event) AND (clk2Hz = '1') then
case(currentState) is
when IDLE =>
servoSwitch <= '0';
buzzer <= '0';
greenSig <= '0';
redSig <= '0';
leftDisplay <= "1111111"; -- off
rightDisplay <= "1111111"; -- off
when WAIT_PASSWORD =>
servoSwitch <= '0';
buzzer <= '0';
greenSig <= '0';
redSig <= '1';
-- RED LED turn on and Display 7-segment LED as EN to let the car know they need to input password
leftDisplay <= "0110000"; -- E
rightDisplay <= "0001001"; -- n
when WRONG_PASS =>
servoSwitch <= '0';
buzzer <= '0';
greenSig <= '0'; -- if password is wrong, RED LED blinking
redSig <= not redSig;
leftDisplay <= "0110000"; -- E
rightDisplay <= "0110000"; -- E
when RIGHT_PASS =>
servoSwitch <= '1';
buzzer <= '0';
greenSig <= not greenSig;
redSig <= '0'; -- if password is correct, GREEN LED blinking
leftDisplay <= "0100000"; -- 6
rightDisplay <= "0000001"; -- 0
when STOP =>
servoSwitch <= '0';
buzzer <= '0';
greenSig <= '0';
redSig <= not redSig; -- Stop the next car and RED LED blinking
leftDisplay <= "0100100"; -- 5
rightDisplay <= "0011000"; -- P
when EMERGENCY =>
servoSwitch <= '1';
buzzer <= '1';
greenSig <= '0';
redSig <= '1';
leftDisplay <= "0100000"; -- 6
rightDisplay <= "0000001"; -- 0
when others =>
servoSwitch <= '0';
buzzer <= '0';
greenSig <= '0';
redSig <= '0';
leftDisplay <= "1111111"; -- off
rightDisplay <= "1111111"; -- off
end case;
end if;
end process;
redLED <= redSig;
greenLED <= greenSig;
end behavior;
-----------------------------------------------------------------------------------------------------------------