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 - V&V SW Analysis II

//offline

    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 SANTHOSH KAMATCHI P (6)

    Project 2 - V&V SW Analysis II

    Objective:

    //offline

    calendar

    06 Sep 2022 10:53 AM IST

      Read more

      Project 1 - V&V SW Analysis - I

      Objective:

        if(owner long press the power button) {       open the company logo at centre; } else if(customer press the power button) {       open the apps in grid; } else if(owner power on the phone) {       shows call the phone icon on first position at bottom; } else if(owner…

      calendar

      06 Sep 2022 10:53 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:

        // OFFINE float microsecToinchs( float d);float avg;int i,sum;int duration,inches;float Duration_inch;int data[5]; void setup(){ Serial.begin(9600); pinMode(7, INPUT);} void loop(){ float average = mov_avg(); Serial.println("distance value is"); Serial.println( inches); delay(1000);} void US_Tx(){ pinMode(7,OUTPUT); //delayMicroseconds(5);…

        calendar

        18 Aug 2022 08:05 AM IST

          Read more

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

          Objective:

          //OFFLINE //MASTER#include<Wire.h> void setup(){ pinMode(A2, INPUT); Serial.begin(9600); Wire.begin(3); //transmission starts from ther master } void loop(){ float value=analogRead(A2); signed int voltage=(value*5)/1024; Wire.beginTransmission(1); Wire.write(voltage); Wire.endTransmission(); delay(50);} //SLAVE#include<Wire.h>#include<LiquidCrystal.h>LiquidCrystal…

          calendar

          18 Aug 2022 07:07 AM IST

            Read more

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

            Objective:

            //OFFLINE Implement the Code for controlling the retraction and extension of Airplane’s landing gear #include typedef enum State{GR_DWN,CHK_BFR_TKFF,RSING_GR,GR_UP,CHK_BFR_LND,LWRNG_GR}State_Type;typedef enum Switch{Open,Close}Switch_Status;typedef enum Pilot_Lever{Rising,Falling,UP,DOWN}Pilot_Lever_Status;typedef enum…

            calendar

            17 Aug 2022 07:11 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:

              //OFFLINE #include<stdio.h> #include<stdlib.h> typedef struct node {     int data;     struct node *next; }Node; static Node *head,*tail,*newnode,*head2,*f_union,*f_intersect,*head_union,*head_intersect; Node*insert_node(Node *head_ref,int n); void display_list(Node *head_ref); Node *find_intersect(Node…

              calendar

              15 Aug 2022 06:11 PM IST

                Read more
                Showing 1 of 6 projects