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

#include void Initiate_State_Machine(); void GearDown(); void CheckingBeforeTakeOFF(); void RaisingGear(); void GearUp(); void CheckBeforeLanding(); void LoweringGear(); static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear}; typedef enum State { GEAR_DOWN,…

    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 Aravind SR (8)

    Project 2 - V&V SW Analysis II

    Objective:

    offline batch 2

    calendar

    06 Dec 2022 01:56 AM IST

      Read more

      Project 1 - V&V SW Analysis - I

      Objective:

      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…

      calendar

      05 Dec 2022 04:48 AM IST

        Read more

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

        Objective:

        #include #define F_CPU 16000000L #include #include "avr/interrupt.h"#define F_CPU 16000000L#include #define lcdport PORTD //object macro for PORTB#define rs_high() PORTB |= (1

        calendar

        28 Nov 2022 04:45 AM IST

          Read more

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

          Objective:

          #include //we are using I/O registers of AVR#define F_CPU 16000000L // define the crystal frequency#include // delay function purpose#include "avr/interrupt.h"// we are using external interrupt pin #define sw_dir (PIND&(1

          calendar

          28 Nov 2022 04:44 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:

            // master code#include<Wire.h> //library file for I2C communication #include<LiquidCrystal.h> //library file for lcd displyLiquidCrystal lcd(12,11,5,4,3,2); // Define LCD pins void setup(){ lcd.begin(16,2); // initialize LCD dispaly Wire.begin(); // begin I2C communication } void loop(){ Wire.requestFrom(1,2);…

            calendar

            23 Nov 2022 08:28 AM IST

              Read more

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

              Objective:

              //MASTER//I2C Communication between two arduino //library for I2C communication function#include <Wire.h>//library for LCD display#include <LiquidCrystal.h>//Define LCD module pinsLiquidCrystal lcd_1(12, 11, 5, 4, 3, 2); void setup(){ //Begin I2C communication at A4,A5 Wire.begin(); //Begin Serial communication…

              calendar

              22 Nov 2022 10:16 AM IST

                Read more

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

                Objective:

                #include void Initiate_State_Machine(); void GearDown(); void CheckingBeforeTakeOFF(); void RaisingGear(); void GearUp(); void CheckBeforeLanding(); void LoweringGear(); static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear}; typedef enum State { GEAR_DOWN,…

                calendar

                14 Nov 2022 04:24 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:

                  #include #include // preprocessor#include struct node //structure declaration{ int data; struct node *next; //self referential structure declaration};//function declarationvoid push(struct node**head_ref,int key);int isPresent(struct node *head,int data);// Function to get union of two linked lists head1 and head2struct…

                  calendar

                  07 Nov 2022 05:19 AM IST

                    Read more
                    Showing 1 of 8 projects