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…
Tharun Kumar Vysyaraju
updated on 29 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 Tharun Kumar Vysyaraju (6)
Project 1 - V&V SW Analysis - I
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…
29 Mar 2022 07:00 AM IST
Project 2 - V&V SW Analysis II
1.In PDF formats.
29 Mar 2022 06:53 AM IST
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}…
16 Mar 2022 04:46 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
#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);…
14 Mar 2022 05:39 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
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);…
09 Mar 2022 12:35 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
#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) { /*…
04 Mar 2022 11:14 AM IST