CODE : #include<stdio.h>#include<conio.h>typedef 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}…
Bhuvana Chandrika Natharga
updated on 14 Mar 2022
Project Details
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.
Other comments...
Read more Projects by Bhuvana Chandrika Natharga (6)
Project 2 - V&V SW Analysis II
As per the Given questions I have created test cases. And attached the regression, dynamic coverage analysis, test manager reports as enclosed below.
28 Mar 2022 05:40 PM IST
Project 1 - V&V SW Analysis - I
PROJECT 1 V&V SW ANALYSIS -1 :- A TEST PLAN to test features of new mobile phone using BLACKBOX TESTING is enclosed in the below attachment.
25 Mar 2022 11:25 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
CODE : #include<stdio.h>#include<conio.h>typedef 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}…
14 Mar 2022 03:56 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
const int pingPin = 7;int red = 11;int blue = 10;int green = 9;void setup() { // initialize serial communication: Serial.begin(9600); pinMode(red, OUTPUT); pinMode(blue, OUTPUT); pinMode(green, OUTPUT); } void loop() { // establish variables for duration of the ping, and the distance result // in inches and centimeters:…
13 Mar 2022 09:46 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//I2C MASTERCODE//I2C communication between two arduino#include<Wire.h> //Library for I2C Communication functions#include<LiquidCrystal.h> //Library for LCD display functionLiquidCrystal lcd(2, 7, 8, 9, 10, 11); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) void setup() {lcd.begin(16,2); //Initilize LCD displaylcd.setCursor(0,0);…
13 Mar 2022 07:33 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
PROJECT 1 - //C program to find union and intersection of two unsorted linked lists//#include #include #include /* Linked list node */struct Node{int data;struct Node* next; };/* A utility function to insert a node at the beginning of a linked list*/void push(struct Node** head_ref, int new_data);/* A utility function…
04 Mar 2022 12:08 PM IST