CODING: #include <stdio.h>#include <stdlib.h>typedef enum{ // Initialization Before_Take_Off_State=0, Before_Landing_State, Gear_Down_State, Lowering_Gear_State, Raising_Gear_State, Gear_Up_State,}state_type;// Define structure typedef struct { state_type states[10]; char* plane_state[10]; }state; state state_machine[10]={…
ARUNVIJAYAKUMAR B
updated on 16 Jul 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 ARUNVIJAYAKUMAR B (12)
Project 3
Aim of the project: Build an object-oriented library which can be used to track automobile maintenance. There can be different car types such as petrol, diesel, gas, electric etc., This library should be able to support at least three of the car types. Maintenance tasks include activities like oil change…
29 Jun 2023 06:40 AM IST
Project 2 - V&V SW Analysis II
Respected sir, I have attached the screenshot of my output and results. Thank you sir.
21 May 2023 04:18 AM IST
Project
System-level simulation of an all-terrain vehicle: INTRODUCTION Carry out a system-level simulation of an all-terrain vehicle and prepare a technical report explaining the model properties & comments on the results. ALL TERRAIN VEHICLE: An all-terrain vehicle (ATV) is defined as a motorized off-highway…
29 Jan 2023 03:48 PM IST
Week - 4
Implement control logic of a “washing machine” using Stateflow as per given sequence: If the power supply is available, the system gets activated If the Water supply is not available, stop the process & indicate through LED Soaking time should be 200s followed by Washing time of 100s. Then rinsing…
22 Jan 2023 01:17 PM IST
Week -2
1. Make a Simulink model of Doorbell using solenoid block with the following details: In the above arrangement, when the switch is closed the electromagnet receives electrical power from the battery and pulls the metal arm to hit the bell producing sound. Create a situation where the switch is closed…
15 Jan 2023 03:13 PM IST
Project 1 - V&V SW Analysis - I
Answer: TEST PLAN DEFINITION: The Test Plan means the detailed document which gives the test strategy, objectives, schedule, estimations deadlines and the resource required for completing that particular project. It is just like a blueprint for running the tests needed to ensure the software is working properly and…
10 Oct 2022 02:11 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Topic: 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. Aim of the project: To Implement a system on the simulator for controlling a DC motor using L293 motor driver, monitor its…
22 Aug 2022 04:36 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Topic: The implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04) Aim of the project: In this project “The implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04)”. Hardware Requirements: Arduino…
16 Aug 2022 02:33 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Topic: The distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter. Aim 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…
05 Aug 2022 09:46 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Topic: Interfacing a 16*2 LCD with Arduino using I2C protocol. Aim 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…
03 Aug 2022 05:28 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
CODING: #include <stdio.h>#include <stdlib.h>typedef enum{ // Initialization Before_Take_Off_State=0, Before_Landing_State, Gear_Down_State, Lowering_Gear_State, Raising_Gear_State, Gear_Up_State,}state_type;// Define structure typedef struct { state_type states[10]; char* plane_state[10]; }state; state state_machine[10]={…
16 Jul 2022 02:03 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) Algorithm: Step 1: Create a linked list node Step 2: To insert a node at the beginning of a linked list Step 3: To check if given data is present in a list Step 4: To get union of…
06 Jul 2022 06:24 AM IST