#include <stdio.h> #include <stdlib.h>#include <stdbool.h> struct Node{int DATA;struct Node* NEXT;}; void push(struct Node** head_ref, int new_DATA);bool isPresent(struct Node* head, int DATA); struct Node* getUnion(struct Node* head1,struct Node* head2){struct Node* result = '\0';struct…
THARUNRAJU SI
updated on 19 Sep 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 THARUNRAJU SI (12)
Week 1 Understanding Different Battery Chemistry
1) Prepare a table which includes materials & chemical reactions occurring at the anode and cathode of LCO, LMO, NCA, NMC, LFP and LTO type of lithium ion cells.Give your detailed explanation on it. Lithium-ion batteriesThe most widely utilized rechargeable battery chemistry now a days is lithium-ion. Electric…
23 Jul 2024 10:36 AM IST
Project 2 - Integrate following sensors to the Dev Board
OBJECTIVE The goal is to integrate a GPS and an IMU sensor with a microcontroller development board to accomplish specific tasks detecting sensor connection/disconnection, managing data communication, and conditionally reporting sensor data based on location changes. The program starts with the main function, where…
27 Apr 2024 06:00 AM IST
Project 1 - Implement a fully functional Queue in C language using Linked lists
Project 1:- Implement a fully functional queue in C language using linked list An IMU has two sensors: Accelerometer Gyroscope Integrate the IMU to the development board; classify the data coming from Accelerometer and Gyroscope. Send the data of respective sensors on “Separate Queues” to a particular task.…
01 Mar 2024 04:03 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 5 int triggerPin = 7 ; int echoPin = 4;signed long duration;int distance;int INDEX = 0;int VALUE = 0;int SUM = 0;int READINGS[WINDOW_SIZE];int AVERAGED = 0;void setup(){pinMode(triggerPin, OUTPUT);pinMode(echoPin, INPUT);pinMode(IN_PIN, INPUT);Serial.begin(9600); } void loop(){SUM…
19 Sep 2023 05:52 AM 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 <stdio.h> #include <stdlib.h>#include <stdbool.h> struct Node{int DATA;struct Node* NEXT;}; void push(struct Node** head_ref, int new_DATA);bool isPresent(struct Node* head, int DATA); struct Node* getUnion(struct Node* head1,struct Node* head2){struct Node* result = '\0';struct…
19 Sep 2023 04:59 AM IST
Project 2 - V&V SW Analysis II
1.Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Install the LDRA TBRUN and the necessary compilers. step 1: To start LDRA-TBrun. step 2: In LDRA page select source--.>single file-->>LDRA_workarea-->>examples-->>C_Testbed_examples-- …
21 Aug 2023 01:17 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
AIM:- Implement the Code for controlling the retraction and extension of Airplane’s landing gear GEAR_DOWN(0): State Machine is initialized & Program is in Gear_Down State & Light_Status : Green …
05 Aug 2023 04:11 AM IST
Project 3
#include #include #include enum class FuelType { GAS, DIESEL, ELECTRIC }; class Vehicle { protected: std::string make; std::string model; int year; int odometer; public: Vehicle(const std::string& make, const std::string& model, int year, int odometer) : make(make),…
04 Aug 2023 05:21 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Main program: #include <avr/io.h> //input and output register of avr ,preprocessor#define F_CPU 16000000ul …
04 Aug 2023 04:59 AM IST
Project 1 - V&V SW Analysis - I
Write a Test plan to test features of a new mobile phone (Blackbox test) that needs to be implemented based on the following requirements. (The product is still under development stage and is yet to be UA (User Acceptance ) tested…
27 Jul 2023 03:13 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
General Instructions:- In this circuit totally there are three push buttons are there, • The button which is connect in port C as C3 is power • the button which is connect in port D as D2 is speed control by duty cycle and also known as interrupt push button. • the button which is…
22 Jul 2023 06:04 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//I2C MASTER CODE// two ardunio connected #include #include LiquidCrystal lcd (2, 7, 8, 9, 10, 11);void setup(){lcd.begin(16,2); lcd.setCursor(0,0);lcd.print("Tharun");lcd.setCursor(0,1);lcd.print ("12C ARDUINO 2 ARDUINO"); for (int i = 0; i < 16; i++) {lcd.scrollDisplayLeft();delay(100); }delay(2000);lcd.clear();Serial.begin(9600);Wire.begin();}void…
22 Jun 2023 12:13 PM IST