DOS is an attack used to deny legitimate users access to a resource such as accessing a website, network, emails, etc. or making it extremely slow. DoS is the acronym for Denial of Service. This type of attack is usually implemented by hitting the target resource such as a web server with too many requests at the same…
Sivaneshwaran R
updated on 05 Feb 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 Sivaneshwaran R (21)
Project-1: Modelling an electric Car with Li-ion battery
INTRODUCTION Nowadays, the trend of reducing energy consumption and environmental impact has led to the electrification of vehicle for future transportation. The serious issue of global warming, also known as the greenhouse effect, urban pollution, and the depletion of fossil fuels have increased the worldwide tensions.…
29 Mar 2023 07:37 AM IST
Project 2 - V&V SW Analysis II
Static Analysis: 1. Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_tbrun_examples\Ggrocers.c” (Single .c file), modify the Code to remove violations and make compliant to MISRA: C 2012 & CERT standards. Generate Code review report compliant to MISRA: C 2012 Coding Standards Generate…
21 Mar 2023 06:11 AM IST
Project 1 - V&V SW Analysis - I
Black box testing: Black box testing is a technique of software testing which examines the functionality of the software without peering into its internal structure or coding. The primary source of black-box testing is a specification of requirements that is stated by the customer. In this method, the tester selects a…
16 Mar 2023 05:30 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
AIM: In this project, the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04) CODE: /* Project_2_Distance_Ultrasonic.c** Created: 14-Apr-22 11:29:12 AM* Author : Kannaiah */ #define F_CPU 8000000UL#include <avr/io.h>#include <avr/interrupt.h>#include…
04 Mar 2023 07:32 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
AIM: Implement a system on the simulator for controlling a DC motor using L293 motor driver, monitor its status and print the running status of motor on the LCD Display. CODE: #include <avr/io.h> //we are using I/O registers of AVR#define F_CPU 16000000L // define the crystal frequency#include "avr/interrupt.h" //…
04 Mar 2023 06:58 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Overview of the Project: In this project the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (28015 Ping) and also smoothen the sensor data using moving average filter”. Goals: Measuring the distance in terms of inches of an object using Ultrasonic Distance Sensor (28015 Ping).…
15 Feb 2023 04:56 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
#include //Library for I2C Communication functions#include //Library for LCD display functionLiquidCrystal lcd(2, 7, 8, 9, 10, 11); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) void setup() {lcd.begin(16,2); //Initilize LCD displaylcd.setCursor(0,0); //Sets Cursor at first line of Displaylcd.print("CYIENT"); //Prints CIRCUIT…
15 Feb 2023 04:56 AM IST
Project 3
DOS is an attack used to deny legitimate users access to a resource such as accessing a website, network, emails, etc. or making it extremely slow. DoS is the acronym for Denial of Service. This type of attack is usually implemented by hitting the target resource such as a web server with too many requests at the same…
05 Feb 2023 01:23 PM IST
Project 2
Binary Search In this tutorial, you will learn how Binary Search sort works. Also, you will find working examples of Binary Search in C, C++, Java and Python. Binary Search is a searching algorithm for finding an element's position in a sorted array. In this approach, the element is always searched in the middle of a portion…
05 Feb 2023 07:03 AM IST
Project 1
Introduction: The CAN Bus What is CAN? CAN is short for ‘controller area network’. Controller area network is an electronic communication bus defined by the ISO 11898 standards. Those standards define how communication happens, how wiring is configured and how messages are constructed, among other things. Collectively,…
03 Feb 2023 08:51 AM IST
Project 1- Traffic Jam Assistant Feature
Traffic Jam Assistant Feature AIM Model Development of a single feature of Traffic Jam Assist using MATLAB & Simulink as well as Code Generation using Embedded Coder. OBJECTIVES Model Development as per MBD guidelines. Creation of Simulink Data Dictionary. Code Generation using Embedded Coder…
27 Jan 2023 07:32 AM IST
Project 2 - Development of TFT Cluster Speedometer Software Component
Aim:- To develope a simulink model as per the requirement and sldd creation, JMAAB Testing, MIL and SIL Coverage report & Harness results for the model to be done. Description:- Cluster Instrument receives the signals from other ECU's via CAN bus interface. It also receives commands from the driver via steering wheel…
27 Dec 2022 02:55 PM IST
Project 1 - Wiper control system and Vehicle speed calculation for ABS using Wheel Speed sensor
Aim: To develop a Simulink/state flow modules for wiper control system based on the given conditions. Conditions: If the density of the rain is low, then wiper rotates with low speed, the output signal should be 100rpm If the density of the rain is medium, then wiper rotates with low speed, the…
27 Dec 2022 02:53 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Project 2: Overview of the Project: In this project, a Finite State Machine is used to manage the retraction and extension of an airplane's landing gear (FSM). The most efficient algorithm is the FSM, which is a mathematical processing model. Actually an airplane has 3 gears for landing: Nose gear, Left gear, Right…
14 Dec 2022 10:41 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
Overview of the Project: (5 to 6 lines) In this project, interfaces for mathematical Set Theory are implemented using C programming language. User can give the input like two list of data and this program will give the output as the union and intersection of these two lists Aim: Goals (2 to 3 points)…
10 Dec 2022 03:09 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Project 2: Overview of the Project: In this project, a Finite State Machine is used to manage the retraction and extension of an airplane's landing gear (FSM). The most efficient algorithm is the FSM, which is a mathematical processing model. Actually an airplane has 3 gears for landing: Nose gear, Left gear, Right gear.…
29 Nov 2022 10:30 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
Solution : #include #include // A structure of linked list nodestruct 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) { //…
29 Nov 2022 10:29 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
Solution : #include <stdio.h>#include <stdlib.h> // A structure of linked list nodestruct node { int data; struct node *next; } *LLOne, *LLTwo, *unionLL, *intersectionLL; void initialize() { LLOne = LLTwo = NULL;}//Given a…
28 Nov 2022 03:39 PM IST
Project 2 Adaptive Cruise Control
Objective of Main Project: Developing Adaptive Cruise Control feature as per the Requirement Document using MATLAB Simulink. Follow all the MBD related processes: Requirement Tagging & Traceability, SLDD creation, Configuration Parameter changes, Model Advisor check & Code Generation. In Configuration Parameters:…
10 Nov 2022 01:57 PM IST
Project 1 (Mini Project on Vehicle Direction Detection
Aim: To create a Simulink model of Vehicle Direction Detection as per the Requirement data. Requirement - 1: Steering wheel input as yaw rate (Signal name: SteeringWheel_YawDegreeInput) is the input for this system. This is compared against 3 angular values, one each for left turn, right turn & straight…
10 Nov 2022 08:37 AM IST