Go to file
Sanyog Nevase Nevase 3f711a8b87 Add header files 2024-11-29 15:15:14 +05:30
.settings Initial Commit 2024-10-27 12:18:13 +05:30
.ccsproject Add Readme.md and delete unused folder 2024-10-27 12:18:13 +05:30
.cproject Initial Commit 2024-10-27 12:18:13 +05:30
.gitignore Initial Commit 2024-10-27 12:18:13 +05:30
.project Initial Commit 2024-10-27 12:18:13 +05:30
README.md Update README.md with block diagram 2024-11-07 16:42:53 +05:30
block.png Add block diagram 2024-11-07 16:36:36 +05:30
main.c Add header files 2024-11-29 15:15:14 +05:30
tm4c123gh6pm.cmd Initial Commit 2024-10-27 12:18:13 +05:30
tm4c123gh6pm.h Initial Commit 2024-10-27 12:18:13 +05:30
tm4c123gh6pm_startup_ccs.c Initial Commit 2024-10-27 12:18:13 +05:30

README.md

Group21_Project

Problem Statement :

Implementation of a Speed Limit Indication System Using a GPS Module

Objectives:

  1. The LED system on the microcontroller should indicate the vehicle's speed range using different colors for specific speed intervals.
  2. The LED should remain off when the vehicle speed is equal to 0 km/hr.
  3. The Green LED should turn on when the vehicle speed is greater than 0 km/hr and below 15 km/hr.
  4. The Yellow LED should turn on when the vehicle speed is greater than or equal to 15 km/hr and below 30 km/hr.
  5. The Red LED should turn on when the vehicle speed is greater than or equal to 30 km/hr and below 40 km/hr.
  6. The Red LED should blink rapidly when the vehicle speed is greater than 40 km/hr.

Tasks :

  1. Initalize UART for receiving data - Completed
  2. Add Read data function - Completed
  3. LED indication configuration - Completed
  4. Initialize buffer to store data - Pending
  5. Add received data to the buffer - Pending
  6. Use received data to meet objectives - Pending

Block