{"id":20296211,"url":"https://github.com/chrnthnkmutt/carpark_verilog","last_synced_at":"2026-03-10T14:31:25.188Z","repository":{"id":212771987,"uuid":"732279511","full_name":"chrnthnkmutt/CarPark_Verilog","owner":"chrnthnkmutt","description":"This project is using for illustrating on making the circuit on Xillin's BASYS3 from AMD and Verilog Language on Vivado, on the scope of car parking system","archived":false,"fork":false,"pushed_at":"2024-09-19T01:26:13.000Z","size":38,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T05:42:00.710Z","etag":null,"topics":["basys3","basys3-fpga","fpga","verilog","verilog-code","verilog-project"],"latest_commit_sha":null,"homepage":"","language":"Verilog","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chrnthnkmutt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-16T06:23:04.000Z","updated_at":"2024-10-13T19:55:04.000Z","dependencies_parsed_at":"2024-11-14T15:40:36.568Z","dependency_job_id":"38159eab-8bfd-4a0c-8d88-022f5c98204b","html_url":"https://github.com/chrnthnkmutt/CarPark_Verilog","commit_stats":null,"previous_names":["chrnthnkmutt/carpark_verilog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chrnthnkmutt/CarPark_Verilog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrnthnkmutt%2FCarPark_Verilog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrnthnkmutt%2FCarPark_Verilog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrnthnkmutt%2FCarPark_Verilog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrnthnkmutt%2FCarPark_Verilog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrnthnkmutt","download_url":"https://codeload.github.com/chrnthnkmutt/CarPark_Verilog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrnthnkmutt%2FCarPark_Verilog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30337181,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T12:41:07.687Z","status":"ssl_error","status_checked_at":"2026-03-10T12:41:06.728Z","response_time":106,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["basys3","basys3-fpga","fpga","verilog","verilog-code","verilog-project"],"created_at":"2024-11-14T15:37:36.937Z","updated_at":"2026-03-10T14:31:25.162Z","avatar_url":"https://github.com/chrnthnkmutt.png","language":"Verilog","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FPGA Parking System on Basys3\n\n## Created By\n- Charunthon Limseelo\n- Aunyada Kumraksa\n- Pakawat Phasook\n- Nanthida Teankrajang\n- Narinthorn Navabutr\n\n## Overview\nThis project implements a simple parking system using the Basys3 FPGA development board. The system monitors and displays the available parking slots on a seven-segment display and outputs the current floor status on an LED. It is designed to handle multiple floors and slots using basic logic components like LUTs, flip-flops, and counters.\n\n## Features\n- **Clock Control**: A slow clock is generated from the main clock input to drive various timing-related components.\n- **Multiple Inputs**: Two sets of 5-bit inputs represent parking slots for floors.\n- **Seven-Segment Display**: Displays available slots or floor information.\n- **LED Indicators**: Displays the current parking floor.\n- **Slot Availability**: Tracks the availability of parking slots and displays it through the available signals.\n  \n## Components\n- **Inputs**:\n  - `clock`: The main clock input.\n  - `floor`: Input representing the parking floor.\n  - `slot[4:0]` and `slot2[4:0]`: 5-bit inputs representing parking slots.\n  \n- **Outputs**:\n  - `led_floor`: Displays the current floor status.\n  - `available[4:0]` and `availablex[4:0]`: Displays available parking slots.\n  - `seg[6:0]`: Seven-segment display outputs.\n  - `an[3:0]`: Controls which segment of the display is active.\n\n- **Logic Components**:\n  - **LUTs**: Used to calculate the availability of slots and control the seven-segment display.\n  - **FDRE**: Registers used for storing slot and floor states.\n  - **Counters**: Manage timing and sequencing for display and clock operations.\n\n## How it Works\n1. The clock signal is received and processed to generate different timing signals.\n2. Parking slot inputs are monitored and stored using flip-flops.\n3. Availability of slots is calculated using LUTs, and the result is displayed on the seven-segment display.\n4. The current floor is output through an LED.\n\n## How to Use\n1. Connect the inputs for `clock`, `floor`, `slot`, and `slot2`.\n2. Observe the `led_floor` for the floor information.\n3. Check the seven-segment display (`seg[6:0]`) for the current availability of parking slots.\n4. Monitor the `available[4:0]` outputs for slot availability.\n\n## Dependencies\nThis project is designed for the Basys3 FPGA board and requires Xilinx Vivado for synthesis and implementation.\n\n## Future Improvements\n- Adding more floors and slots.\n- Displaying additional information on the seven-segment display.\n- Implementing a user interface for easy configuration.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrnthnkmutt%2Fcarpark_verilog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrnthnkmutt%2Fcarpark_verilog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrnthnkmutt%2Fcarpark_verilog/lists"}