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)

CODE:   #include <avr/io.h>#define F_CPU 16000000L#include <util/delay.h>#include "avr/interrupt.h"#define lcdport PORTB#define rs_high PORTD|=(1<<0);#define rs_low PORTD &=~(1<<0);#define en_high PORTD |=(1<<1);#define en_low PORTD &=~(1<<1);unsigned int tov=0, count, distance;void…

    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 Suchitra Patil (6)

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

    Objective:

    CODE:   #include <avr/io.h>#define F_CPU 16000000L#include <util/delay.h>#include "avr/interrupt.h"#define lcdport PORTB#define rs_high PORTD|=(1<<0);#define rs_low PORTD &=~(1<<0);#define en_high PORTD |=(1<<1);#define en_low PORTD &=~(1<<1);unsigned int tov=0, count, distance;void…

    calendar

    30 Mar 2023 03:48 PM IST

      Read more

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

      Objective:

      CODE:   #include <avr/io.h> // for using I/O registers of avr#define F_CPU 16000000L //defining frequency#include <util/delay.h> //delay function#include "avr/interrupt.h" //external interrupts pin#define lcd_port PORTB //port b pins are used for lcd data#define rs_high PORTD|=(1<<0) //d0 pin is…

      calendar

      30 Mar 2023 10:58 AM IST

        Read more

        Project 1 - V&V SW Analysis - I

        Objective:

        TEST PLAN:A test plan is a detailed document which describes software testing areas and activities. It outlines the test strategy, objectives, test schedule, required resources (human resources, software, and hardware), test estimation and test deliverables. Components of Test Plan: 1.Test Objective:It consist the information…

        calendar

        14 Feb 2023 08:23 AM IST

          Read more

          Project 2 - V&V SW Analysis II

          Objective:

          Question 1: Static Code Review Analysis:   Que 2: Integration testing:                                                      

          calendar

          10 Feb 2023 04:37 AM IST

            Read more

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

            Objective:

            This project explains the extraction and retraction of landing gear. Extraction of landing gear takes place while landing while retraction of landing gear takes place after takeoff. Here FSM(finite state machine)is used to check the different states. CODE:   #include<stdio.h> /* Functions*/void Initial_state_machine();…

            calendar

            30 Jan 2023 09:27 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:

               OVERVIEW: In this project, we are implementing the mathematical set theory .  CODE: #include#include#include typedef struct node//defining the structure{ int data; struct node *next;// self referential node}Node;//changing the structure name static Node *head1,*head2,*head,*head_union,*head_intersection,*newnode,*tail,*res_union,*res_intersection;//declaring…

              calendar

              22 Jan 2023 04:38 PM IST

                Read more
                Showing 1 of 6 projects