Aditya kumbhar
Introduction
9 Projects
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
//* Project 1: Program of mathemathical set theory(find union and intersection of two nodes using linklist *// #include<stdio.h>#include<stdlib.h> // A structure of linked list nodestruct node {int data;struct node *next; } *LLamol, *LLraj, *unionLL, *intersectionLL; void initialize() {LLamol = LLraj = NULL;}//Given…
18 Jul 2023 07:30 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include #include /* Functions used in our projects*/ void Initial_state_machine(); //function declaration void Gear_down(); void Checking_before_takeoff(); void Raising_gear(); void Gear_up(); void Checking_before_landing(); void Lowering_gear(); typedef enum states { GEAR_DOWN, //ENUM IS USED TO GIVING SUBSEQUENT…
25 Jul 2023 02:38 PM IST
Project 3
#include <iostream> #include <vector> using namespace std; enum Type { GAS, DIESEL, ELECTRIC }; class Vehicle { protected: string make; string model; int year; int odometer; public: Vehicle(const…
27 Jul 2023 07:19 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//* P1: Code for Master to receive name and display on LCD *// #include #include LiquidCrystal lcd(6,7,2,3,4,5); #define SLAVE_ADDR 8 #define NameSize 10 void setup() { Wire.begin(); lcd.begin(16,2); Serial.begin(9600); } void loop() { Wire.requestFrom(SLAVE_ADDR,NameSize); String MyName=""; while(Wire.available())…
03 Oct 2023 01:58 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
//* P2: Measure Distance using Ultrasonic Distance Sensor *// // Master code #include #include LiquidCrystal lcd(2,3,4,5,6,7); int Distance; void setup() { Wire.begin(); Serial.begin(9600); } void loop() { Wire.requestFrom(8,1); Distance=Wire.read(); lcd.setCursor(0,0); lcd.print("Distace= "); lcd.print(Distance);…
03 Oct 2023 02:18 PM IST
Project 1 - V&V SW Analysis - I
//* P_1: Test Plan has uploaded as World file below *//
12 Oct 2023 10:02 AM IST
Project 2 - V&V SW Analysis II
//* P2Q: Static Analysis only done on software to analyse code and structure of that and check that our code follow standard rule of MISRA guidlines or not . Following screenshots given information of Code review Report , Integration Testing report and Location of TCF file *//
12 Oct 2023 10:09 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
//* Project.1: Change the Dc_Motor speed using PWM and directio also with display speed on LCD display *// #include #include //header file #define F_CPU 8000000UL // CPU frequency #include #define sw (PINB&(1< #define rs_high PORTD|=(1< #define rs_low PORTD &=~(1< #define en_high PORTD |=(1<…
16 Oct 2023 04:39 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
//* P2: Measure Distance using Ultrasonic Distance Sensor *// // Master code #include #include LiquidCrystal lcd(2,3,4,5,6,7); int Distance; void setup() { Wire.begin(); Serial.begin(9600); } void loop() { Wire.requestFrom(8,1); Distance=Wire.read(); lcd.setCursor(0,0); lcd.print("Distace= "); lcd.print(Distance);…
16 Oct 2023 05:28 AM IST
4 Course Certificates
Software Verification and Validation and System Testing for Hand Code
Academic Qualification
B.E
S B Patil College of Engineering
13 Mar 2014 - 22 Mar 2018
12th
jijamata shikshan prasarak mandal, sarati
15 Mar 2012 - 20 Mar 2014
10th
Sadashivrao Mane Vidyalaya,Akluj High school in Akluj, Maharashtra
10 Mar 2011 - 22 Mar 2012
Here are the courses that I have enrolled
13 Hours of Content
Similar Profiles
Ladder of success cannot be climbed with hands in pocket.
The Future in Motion
Give more than what you get you will get more than what you gave
Avid learner