Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

Aim The aim of this project is to measure the distance of an object using an Ultrasonic Distance Sensor (HC-SR04) interfaced with an AVR microcontroller (Atmega328) and communicate the distance measurements via UART. Components Required Atmega 328 Ultrasonic Distance Sensor - HC-SR04 Fixed Voltage Sorce - 5V Potentiometer…

    Project Details

    Loading...

    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.

    Please  login to add a comment

    Other comments...

    No comments yet!
    Be the first to add a comment

    Read more Projects by Nestin Gregorios Sunny (15)

    Final Project: Design of an Electric Vehicle

    Objective:

    AIMThe aim of this project is to create a MATLAB model of an electric car utilizing a battery and a DC motor using the Powertrain Block set. OBJECTIVEThe objective is to develop a MATLAB model of an electric car employing the Powertrain Block set, and subsequently, prepare a comprehensive report encompassing the following…

    calendar

    23 Jul 2024 08:56 AM IST

    • DESIGN
    • MATLAB
    Read more

    Project-1: Powertrain for aircraft in runways

    Objective:

    PART A 1) Search and List Out the Total Weight of Various Types of AircraftsUnderstanding the total weight of aircraft is crucial in aviation, influencing both construction and operational efficiency. Excessive weight compromises aircraft performance and safety margins, particularly during emergencies. The maximum…

    calendar

    22 Jul 2024 01:11 PM IST

      Read more

      Week-7 Challenge: DC Motor Control

      Objective:

      Q1.A)  The H-bridge connects to a power supply at the top end and is grounded at the bottom end. Each of the four switching elements can be toggled on or off independently, with certain limitations.               While the load can vary, H-bridges are…

      calendar

      19 Jul 2024 03:35 PM IST

      Read more

      Week-6 Challenge: EV Drivetrain

      Objective:

      Q1) A power converter serves as an essential component in electrical engineering, facilitating the transformation of electric energy from one form to another, tailored to meet specific load requirements. These converters perform various functions, altering the output from the input, whether by adjusting voltage magnitude,…

      calendar

      19 Jul 2024 11:04 AM IST

      Read more

      Week-4 Challenge WOT Condition Part-2

      Objective:

      Q1) In the domain of powertrain modeling and simulation, two primary models are commonly employed: Mapped Model and Dynamic Model. Both models serve to simulate the behavior of the powertrain system, albeit with different approaches and levels of accuracy.Mapped Model:The Mapped Model operates on pre-assigned data points…

      calendar

      17 Jul 2024 07:36 AM IST

      Read more

      Week-3 Challenge: ADVISOR Tool

      Objective:

      AIM:Utilize the ADVISOR tool to assess the feasibility of the EV_defaults_in running for a 45 km distance with a 500 kg cargo mass, maintaining default conditions. Additionally, run simulations with varied battery capacities and conduct a gradeability test using the PRIUS_Jpn_defaults_in file.  PROCEDURE:Study 1 -…

      calendar

      16 Jul 2024 07:56 AM IST

      Read more

      Project 2 - V&V SW Analysis II

      Objective:

      1.Aim Perform Static Code Review Analysis for: "C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c" Generate Code review report and upload them. Static Code Review Analysis LDRA TBurn is a tool used for test case management,test execution ,and the collection and analaysis of coverage data in software development.…

      calendar

      16 Oct 2023 07:39 AM IST

      Read more

      Project 1 - V&V SW Analysis - I

      Objective:

      Black Box Testing Black box testing is a software testing technique that focuses on testing the functionality of a software application without knowing its internal structure, logic, or code implementation. The tester treats the software as a "black box" and tests its functionality by providing inputs and observing the…

      calendar

      06 Oct 2023 11:21 AM IST

        Read more

        Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

        Objective:

        Aim The aim of this project is to measure the distance of an object using an Ultrasonic Distance Sensor (HC-SR04) interfaced with an AVR microcontroller (Atmega328) and communicate the distance measurements via UART. Components Required Atmega 328 Ultrasonic Distance Sensor - HC-SR04 Fixed Voltage Sorce - 5V Potentiometer…

        calendar

        21 Sep 2023 10:34 AM IST

          Read more

          Project 1 - Controlling a DC motor using PWM and monitoring its Running status

          Objective:

          Aim The aim of this project is to implement a system on the simulator to control a DC motor using PWM with the L293 motor driver. The project also involves monitoring the running status of the DC motor and displaying it on an LCD screen. Components Required Atmega 32 Motor Driver - L293 DC Motor Pushbutton(2) Switch- ON…

          calendar

          20 Sep 2023 03:29 PM IST

            Read more

            Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter

            Objective:

            Aim The aim of this project is to measure the distance of an object using an ultrasonic distance sensor (28015 Ping) and apply a moving average filter to smoothen the sensor data. The project utilizes an Arduino board to process the sensor readings and display the distance on an LCD screen. Components Required Arduino…

            calendar

            09 Aug 2023 05:34 AM IST

              Read more

              Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol

              Objective:

              Aim To implement 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 LCD screen. Components Required Arduino Uno R3 (2) LCD 16 x 2…

              calendar

              08 Aug 2023 03:55 PM IST

                Read more

                Project 3

                Objective:

                                                                                    PROJECT 3 CODE vehicle.h #ifndef vehicle_H_#define vehicle_H_ //preprocessor directive#include…

                calendar

                13 Jul 2023 12:45 PM IST

                  Read more

                  Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

                  Objective:

                  CODE   gears.h #ifndef GEARS_H_ #define GEARS_H_   //preprocessor directive #include<stdio.h>   //function declaration void Initiate_State_Machine(); void GearDown(); void CheckingBeforeTakeOFF(); void RaisingGear(); void GearUp(); void CheckBeforeLanding(); void LoweringGear();   //enum for State_Type…

                  calendar

                  07 Jul 2023 11:45 AM IST

                    Read more

                    Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List

                    Objective:

                    CODE settheory.h //defining a header file to store all libraries used for this project #ifndef SETTHEORY_H_ #define SETTHEORY_H_ //preprocessor directives #include<stdio.h> //header file for std input and output #include<stdlib.h> //header file for malloc struct NODE //node for linked list { int data;//data…

                    calendar

                    03 Jul 2023 02:16 PM IST

                      Read more
                      Showing 1 of 15 projects