#include <stdbool.h>#include <stdio.h>#include <stdlib.h>// Link list nodestruct Node { int data; struct Node* next;}; void push(struct Node** head_ref, int new_data);int isPresent(struct Node* head, int data);// Function to get union of two linked lists head1 and head2struct Node* getUnion(struct Node*…
Pranshu Pareek
updated on 26 Jan 2023
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 Pranshu Pareek (9)
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
There are many types of Arduino distance sensors, but in this project we have used the HC-SR04 to measure distance in range of 2cm-400cm with an accuracy of 3mm. The sensor module consists of an ultrasonic transmitter, receiver and control circuit. The working principle of ultrasonic sensor is as follows: 1.…
31 Dec 2023 10:08 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Overview of the Project: In this project implementing the Code for “Interfacing a 16*2 LCD with two Arduino’s (one for Master and one for Slave) using Inter-Integrated Circuit (I2C) communication protocol” by sending the message to LCD using I2C communication protocol and display the message on…
20 Nov 2023 10:58 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include <stdio.h>void Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};typedef enum State{…
18 Feb 2023 01:33 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
#include <stdbool.h>#include <stdio.h>#include <stdlib.h>// Link list nodestruct Node { int data; struct Node* next;}; void push(struct Node** head_ref, int new_data);int isPresent(struct Node* head, int data);// Function to get union of two linked lists head1 and head2struct Node* getUnion(struct Node*…
26 Jan 2023 01:46 PM IST
Project 5
1. In this project we have to create a 10 cells series coonecton and calculate the voltage ,current and SOC also simulate the aging and thermal effects . steps 1 first we creat 10 series cells as in my project 2 then we connect current sensor and voltage sensor to that 3 connect display and scope 4 than we connect…
03 Nov 2022 04:24 PM IST
Project 2
I dont get access of powertrain from simulink add on , i tried couples of times , than i used spreadsheet to import data using excel as my tuitor suggest. time data 0 0 0.1 1 0.2 2 0.3 3 0.4 4 0.5 5 0.6 6
25 Sep 2022 01:41 PM IST
Project 4
TO find out the capacity of battery pack and no. of series parallel connectioon we have to first calculate the power, than travel factor , power required in series parallel connection. steps power = v*i 1200 =65*i i= 1200/65travel factor = 18.46 amp. Current withdrawn By Motor 18.46 AmpAssure Current Loss 1-10%After…
25 Sep 2022 08:23 AM IST
Project 3
A buck converter (step-down converter) is a DC to DC power converter which steps down voltage. The input voltage is 48V, the Output voltage is 12 V, and runs the simulation. 1. we choose dc voltage source give input as 48 v 2. a mosfet , we connect one end to step and second to dc source, third end to diode as…
19 Sep 2022 08:15 AM IST
Project 1
.
13 Sep 2022 04:25 PM IST