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)

float pulsewidth = 0; //Declard Global Variable PulseWidth void trigger() { Serial.begin(9600); //Set the Baud Rate PORTB |= (1<<PORTB1); //Set the PORTB _delay_us(15); //delay for 15us PORTB &=~ (1<<PORTB1); //Clear the PORTB } void init_timer() //Select Various Registers Regards to the Timer { ACSR |=…

    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 Jai Infant Mano (7)

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

    Objective:

    float pulsewidth = 0; //Declard Global Variable PulseWidth void trigger() { Serial.begin(9600); //Set the Baud Rate PORTB |= (1<<PORTB1); //Set the PORTB _delay_us(15); //delay for 15us PORTB &=~ (1<<PORTB1); //Clear the PORTB } void init_timer() //Select Various Registers Regards to the Timer { ACSR |=…

    calendar

    04 Dec 2022 03:37 PM IST

      Read more

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

      Objective:

      #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 for…

      calendar

      04 Dec 2022 07:11 AM IST

        Read more

        Project 1 - V&V SW Analysis - I

        Objective:

        Q1. if(long press power button) printf(company name comes centure of screen) return 0; Q2. if(power button is pressed ) print(switched ON and all my icons of the APPS shall be present in the grid) return 0; Q3. if(phone is powered ON ) print(call the phone in center of screen) return 0; Q4. if(phone is powered…

        calendar

        22 Nov 2022 06:46 PM IST

          Read more

          Project 2 - V&V SW Analysis II

          Objective:

          All testing are done Find the attachment below 

          calendar

          22 Nov 2022 06:14 PM IST

            Read more

            Project 1 - V&V SW Analysis - I

            Objective:

            Q1.if("long press phones power button")printf("company logo comes centure of screen")return 0; Q2. if("power button long poress")printf("show comppany logo mobile turn on")printf("all application option")return 0;Q3.if("phone power on")printf("call button is the 1st icon in bottom of screen")return 0;Q4.if("phone power…

            calendar

            21 Nov 2022 05:28 PM IST

              Read more

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

              Objective:

              #include<stdio.h> //Preprocessor //Declare Function as Void (With No Argument) No Return void Initiate_State_Machine(); void GearDown(); void CheckingBeforeTakeOff(); void RaisingGear(); void GearUp(); void CheckingBeforeLanding(); void LoweringGear(); //Creating Enum type Structure States typedef enum State { Gear_Down,…

              calendar

              10 Nov 2022 03:59 PM 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:

                #include<stdbool.h> //Boolean Data Type #include<stdio.h> //Preprocessor #include<stdlib.h> //Memory Allocation /* Linked List Node */ struct Node { int data; struct Node* next; }*head1,*head2,*uninLL,*intersecnLL; void initialize() //Initialize for Two lists Starting at NULL { head1 = head2 = NULL; }…

                calendar

                10 Nov 2022 03:56 PM IST

                  Read more
                  Showing 1 of 7 projects