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…
ROHIT KUMARMISHRA
updated on 25 Apr 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 ROHIT KUMARMISHRA (10)
Project 3
solution code:- #include//libraryusing namespace std;enum Type{GAS,DIESEL,ELECTRIC};//enum type list for the vechileclass automobile_maintenance//main class for the automobile maintenance{protected://it is a protected function in classstring make,model;int year,odometer,type;public://used to access the protected in main…
19 Sep 2023 04:38 PM IST
Project 2 - V&V SW Analysis II
.
03 Sep 2023 06:14 AM IST
Project 1 - V&V SW Analysis - I
.
26 Jul 2023 03:02 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
project2 #define F_CPU 8000000UL #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #include <string.h> #include <stdlib.h> #define LCD_Data_Dir DDRD /* Define LCD data port direction */ #define LCD_Command_Dir DDRC /* Define LCD command port direction register…
14 Jun 2023 04:43 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
code= #include //we are using I/O registers of AVR #define F_CPU 16000000L // define the crystal frequency #include "avr/interrupt.h" // we are using external interrupt pin #include // delay function purpose #define sw_dir (PIND & (1
07 Jun 2023 03:28 PM 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…
25 Apr 2023 05:26 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
he analog pins A4 and A5 in arduino are used for used for I2C communication. The digital pin 2 is connected to RS of LCD. Digital pin 3 connected to E of LCD. The Digital pins 4, 5, 6, 7 are connected to DB1, DB2, DB3, DB4 of LCD. Input supply 5v and Gnd are connected to the LCD from arduino. The potentiometer is…
15 Apr 2023 06:18 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
code= #include const char* PLANESTATES[] = {"Grounded", "TakeOff", "Airborne", "Land"}; const char* POSITIONSTATES[] = {"Falling", "Down", "Rising", "Up"}; const char* SWITCHSTATES[] = {"Opened", "Closed"}; const char* LIGHTSTATES[] = {"Off", "Green", "Red"}; typedef enum planeStates { GROUNDED, TAKEOFF, AIRBORNE,…
30 Mar 2023 11:55 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
code= #include const char* PLANESTATES[] = {"Grounded", "TakeOff", "Airborne", "Land"}; const char* POSITIONSTATES[] = {"Falling", "Down", "Rising", "Up"}; const char* SWITCHSTATES[] = {"Opened", "Closed"}; const char* LIGHTSTATES[] = {"Off", "Green", "Red"}; typedef enum planeStates { GROUNDED, TAKEOFF, AIRBORNE,…
02 Mar 2023 06:04 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
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List main.c // C program to find union// and intersection of two unsorted// linked lists#include #include #include /* Linked list node */struct Node { int data; struct…
02 Feb 2023 08:10 AM IST