TFT Cluster Speedmeter Display Introduction LCD based TFT cluster has become a norm in today's automotive market. Cluster comes with a 7 inch TFT LCD screen & a 32 bit micro controller. The Cluster could process various informations from other ECU's & display it in its large TFT LCD screen Architecture of…
Srishti Verma
updated on 16 Jun 2023
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Srishti Verma (15)
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter Overview of the Project: In this project the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (28015 Ping) and also smoothen the sensor…
10 Jul 2023 11:15 AM IST
Project 1 - Wiper control system and Vehicle speed calculation for ABS using Wheel Speed sensor
Wiper control system Develop the Simulink model based on the given descriptions for the below challenges and also create SLDD file and link the same to the model. Perform the complete V and V workflow for the obtained models. Wiper control system Develop Simulink/state flow model for wiper control system based on the…
19 Jun 2023 07:50 AM IST
Project 2 - Development of TFT Cluster Speedometer Software Component
TFT Cluster Speedmeter Display Introduction LCD based TFT cluster has become a norm in today's automotive market. Cluster comes with a 7 inch TFT LCD screen & a 32 bit micro controller. The Cluster could process various informations from other ECU's & display it in its large TFT LCD screen Architecture of…
16 Jun 2023 07:25 AM IST
Project 2-Highway Assistant-Lane Changing Assistant
Highway Assistant – Lane Changing Assistant Introduction to the Feature: The Highway Assistant supports the driver and takes over the longitudinal and lateral guidance of the vehicle in monotonous driving situations on highways. The partially automated function can automatically start, accelerate, brake as…
25 May 2023 06:18 PM IST
Project 1- Traffic Jam Assistant Feature
Traffic Jam Assistant Feature Introduction to the Feature: Traffic Jam Assistant is one of the most common feature in Advanced Driver Assistance System. Traffic Jam Assistant helps the driver arrive more relaxed at their destination, even in dense traffic or in traffic jams. As a partially automated comfort function, the…
23 May 2023 03:34 PM IST
Project 2 Adaptive Cruise Control
Main Project – Adaptive Cruise Control (ACC) General Overview: Adaptive Cruise Control Feature for passenger cars allows the host vehicle to adapt to the speed in line with the flow of traffic. Driving in heavy traffic or keeping a safe distance to the preceding vehicle calls for a high level of concentration.…
22 May 2023 04:44 PM IST
Project 1 (Mini Project on Vehicle Direction Detection
Overview: Identifying the direction of the vehicle is one of the important & diverse features in Autonomous driving & Advanced Driver Assistance Features. This particular sub-feature of identifying the direction of vehicle is basically identifying the direction the vehicle is taking based on the camera…
21 May 2023 07:13 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Overview of the Project: In this project implementing the Code for “Interfacing a 16*2 LCD with two Arduino’s (one for Master and one for Slave) using Inter-Integrated Circuit (I2C) communication protocol” by sending the message to LCD using I2C communication protocol and display the message on…
20 May 2023 04:09 PM IST
Project
To prepare a technical report of Simulation of BAJA All-Terrain Vehicle (ATV) under different conditions OBJECTIVE: SIMULINK MODEL FOR BAJA ATV WITH CVT: SIMULINK MODEL FOR BAJA ATV WITH CVT USING DASHBOARD SIMULINK MODEL FOR BAJA ATV WITH CVT USING LOOKUP TABLE SIMULINK MODEL FOR BAJA ATV WITH CVT USING LOOKUP TABLE &…
29 Apr 2023 09:16 AM IST
Week - 4
Ques-1 sol-1 When power supply and water supply are not available system will be in the deactivated state:- When the power supply is available but water supply is not available:- When the power supply and water supply both are available system gets activated:- The control logic of a “washing machine”…
20 Apr 2023 06:19 PM IST
Week -2
sol.1 Simulink model of Doorbell using solenoid block- simulink model is created to create a sound for the doorbell. here we used solenoid block to create a magnetic field . 1. Battery- this block is used here to supply the power t0 the circuit 2. Switch - the block represents a switch…
18 Apr 2023 10:24 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
CODE #include <avr/io.h>#define F_CPU 16000000L#include <util/delay.h>#define rs_high PORTD |=(1<<0);//DEFINE BIT FOR RS_HIGH#define rs_low PORTD &=~(1<<0);//DEFINE BIT FOR RS_LOW#define en_high PORTD |= (1<<2);//DEFINE BIT FOR EN_HIGH#define en_low PORTD &=~(1<<2);//DEFINE…
16 Nov 2022 06:55 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
code #include <avr/io.h> //we are using I/O registers of AVR#define F_CPU 16000000L // define the crystal frequency#include "avr/interrupt.h" // we are using external interrupt pin#include <util/delay.h> // delay function purpose#define sw_dir (PIND & (1<<1)) // d1 pin is declared as push button…
16 Nov 2022 07:51 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Airplane.c//main.c #include<stdio.h>#include"Airplane.h" //int pilot_lever;//int limit_switch;//int squat_switch; //static volatilestatic void(*state_table[])(void)={GearDown_A, CheckingBeforeTakeOff_B, RaisingGear_C, GearUP_D, CheckingBeforeLanding_E,LoweringGear_F};int main(){ Init_state_Airplane(); while(1)…
02 Oct 2022 06:44 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
union & intersection of two linked list #include<stdio.h>#include<stdlib.h>#include<malloc.h> struct node { int data; struct node* next;}; void display1(struct node *start1);//display the data of start 1 lined list struct node*create1(struct node*start1);void display2(struct node *start2);//display…
28 Sep 2022 08:00 PM IST