In this project, the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04) Description: Ultrasonic Module HC-SR04 works on the principle of SONAR and RADAR systems. HC-SR-04 module has an ultrasonic transmitter, receiver, and control circuit on a single board. The…
Suresh Manogaran
updated on 30 May 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 Suresh Manogaran (10)
Project 1 - V&V SW Analysis - I
Test Plan to test features of a new mobile phone: Overview: A Test Plan is a document that describes the scope of testing, test strategy, objective, effort, schedule, and resources required. It serves as a guide to testing throughout the development process. 2.1 Unit testing Objective The main objective of unit testing…
17 Jul 2022 02:37 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Measuring the distance of an object using an ultrasonic sensor and also smoothening the sensor data using a moving average filter Code: Master Code #include// we are getting the I2C protocol const int pin =7;//seting pin 7 as signal pin long sum =0;//declaring all the global variable long avg; byte send; void setup() {…
03 Jul 2022 03:35 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Interfacing a 16*2 LCD with Arduino using I2C protocol COde: Master Code: #include<Wire.h>//getting the wire I2C communication protocol #include<LiquidCrystal.h>//getting the liquidcrystal library files LiquidCrystal lcd(2,7,8,9,10,11);//(RS,EN,8,9,10,11) void setup() { lcd.begin(16,2); // lcd.setCursor(0,0);…
03 Jul 2022 10:15 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
In this project, the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04) Description: Ultrasonic Module HC-SR04 works on the principle of SONAR and RADAR systems. HC-SR-04 module has an ultrasonic transmitter, receiver, and control circuit on a single board. The…
30 May 2022 01:06 PM 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 the L293 motor driver, monitor its status, and print the running status of the motor on the LCD Display. code: #define F_CPU 16000000L #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #define spcn PD2//declaring…
27 May 2022 05:03 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
In this project, controlling the retraction and extension of Airplane’s landing gear can be implemented using Finite State Machine (FSM). FSM is the most efficient algorithm which is mathematical model of computation. Objective: Here we are going to control the Airplanes landing gear. What is Finite state Machine:…
05 May 2022 09:55 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
Overview of the Project: Here the main objective of the project is to do the mathematical set operation. The set operation has many operations here they are told to do the union and intersection of the list created as a linked list. so here we are creating a structure it has a collection of different data. Here is the…
05 May 2022 04:33 AM IST
Project
Aim: Study and Analyse the Baja All-Terrain Vehicle(ATV) Model using Simulink. Objective: To prepare a technical report of ATV model with Dashboard,signalBuilder, with workspace model, and with a Lookup table. Analyze the ATV model without Dashboard Analyze the ATV model with Dashboard Analyze the ATV model with CVT Ratio…
23 Mar 2022 03:03 PM IST
Week - 4
Implement control logic of a “washing machine” using Stateflow as per the 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…
18 Mar 2022 07:44 AM IST
Week -2
Aim: Create the simulation to ring a bell for 2 sec and go to the off position for another 2 sec in a repeated manner using a solenoid valve. Description: To simulate the above condition we require the following Blocks: Pulse Generator Battery switch Electrical Reference solver configuration solenoid Ideal Translational…
12 Mar 2022 05:59 AM IST