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 bar…
Sai Akshaya Nelanti
updated on 28 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 Sai Akshaya Nelanti (6)
Project 2 - V&V SW Analysis II
reports attached
29 Mar 2022 03:22 AM IST
Project 1 - V&V SW Analysis - I
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 bar…
28 Mar 2022 05:04 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#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 events typedef enum { Checking_before_takeoff_delay_3s_Event, Raising_gear_Event,…
14 Mar 2022 04:13 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Master code: //I2C MASTERCODE //I2C communication between two arduino #include<Wire.h> //Library for I2C Communication functions #include<LiquidCrystal.h> //Library for LCD display function LiquidCrystal lcd(2, 7, 8, 9, 10, 11); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) void setup() { lcd.begin(16,2); //Initilize…
13 Mar 2022 05:46 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
/* The circuit: - +V connection of the PING))) attached to +5V - GND connection of the PING))) attached to ground - SIG connection of the PING))) attached to digital pin 7 // this constant won't change. It's the pin number of the sensor's output: */ const int pingPin = 7; void setup() { // initialize serial communication:…
13 Mar 2022 04:00 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
6.#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…
04 Mar 2022 12:16 PM IST