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 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

#includetypedef enum{Gear_Down_State,Checking_before_Take_off_Delay_3s_State,Raising_Gear_State,Gear_Up_State,Checking_before_landing_State,Lowering_Gear_State,} eSystemState;//Different type eventstypedef enum{Checking_before_takeoff_delay_3s_Event,Raising_gear_Event,Gear_up_Event,checking_before_landing_Event,Lowering_gear_Event}…

    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 Tharun Kumar Vysyaraju (6)

    Project 1 - V&V SW Analysis - I

    Objective:

    A. if(owner switch on the phone) { (Company logo at the center of the screen) } else if(customer switch on the phone) { (All my icons of the APPS shall be present in the grid) } else if(owner powered on the phone) { (the "call the phone" icon is the first icon and the "Dictionary" icon is the second icon at the bottom…

    calendar

    29 Mar 2022 07:00 AM IST

      Read more

      Project 2 - V&V SW Analysis II

      Objective:

      1.In PDF formats.

      calendar

      29 Mar 2022 06:53 AM IST

        Read more

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

        Objective:

        #includetypedef enum{Gear_Down_State,Checking_before_Take_off_Delay_3s_State,Raising_Gear_State,Gear_Up_State,Checking_before_landing_State,Lowering_Gear_State,} eSystemState;//Different type eventstypedef enum{Checking_before_takeoff_delay_3s_Event,Raising_gear_Event,Gear_up_Event,checking_before_landing_Event,Lowering_gear_Event}…

        calendar

        16 Mar 2022 04:46 AM 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:

          #define IN_PIN A0#define WINDOW_SIZE 5const int out=12;const int in=13;int INDEX = 0;int VALUE = 0;int SUM = 0;int READINGS[WINDOW_SIZE];int AVERAGED = 0;void setup() { pinMode(in, INPUT); pinMode(out, OUTPUT); pinMode(IN_PIN, INPUT); Serial.begin(9600);}void loop() { long dur; long dis; long tocm; digitalWrite(out,LOW);…

          calendar

          14 Mar 2022 05:39 AM IST

            Read more

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

            Objective:

            A. Arduino code: int analogPin = 0;int raw = 0;int Vin = 5;float Vout = 0;float R1 = 1000;float R2 = 0;float buffer = 0; void setup(){Serial.begin(9600);} void loop(){ raw = analogRead(analogPin); if(raw){ buffer = raw * Vin; Vout = (buffer)/1024.0; buffer = (Vin/Vout) - 1; R2= R1 * buffer; Serial.print("Vout: "); Serial.println(Vout);…

            calendar

            09 Mar 2022 12:35 PM IST

              Read more

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

              Objective:

              #include <stdio.h>#include <stdlib.h>/* A structure of linked list node */struct node { int data; struct node *next;} *LLOne, *LLTwo, *unionLL, *intersectionLL; void initialize(){ LLOne = LLTwo = NULL;}/* Given a Inserts a node in front of a singly linked list. */void insert(struct node **head, int num) { /*…

              calendar

              04 Mar 2022 11:14 AM IST

                Read more
                Showing 1 of 6 projects