Project 2:- Object :- In this project the implementation of code for “Measuring distance of an object using ultrasonic distance sensor. circuit Diagram:- Connections:- The analog pin A4 pin is connected to Trigger pin at ultra sonic sensor.The analog pin A5 pin is connected to Echo pin at ultra sonic sensor The digital…
Sivakumar Mamidi
updated on 23 Oct 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 Sivakumar Mamidi (10)
Project 2 - V&V SW Analysis II
1)Answer:- Performing Static Code Review Analysis for (“C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c”) reports are shown below. Step-1 LDRA tool starting slide:- Step-2 Click on the source option for an opening single file Step-3 then open the Ggrocers. c file from this file location(“C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c”)…
18 Dec 2022 07:22 PM IST
Project 1 - V&V SW Analysis - I
Test plan to test features of a new mobile phone Aim:- Writing a Test plan to test the features of a…
18 Dec 2022 01:26 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Aim :- To measure the distance of an object using an Ultrasonic Distance Sensor (HC-SR04). Components used :- Atmega32 microcontrooler, LCD display, Ultrasonic Distance Sensor (HC-SR04), Variable resistor (for varying the distance), fixed voltage source(it is used to run variable resistor). Circuit diagram:- Program…
29 Nov 2022 05:05 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Project 1 :- 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. Components used :- Atmega32 microcontroller, Dc motor, L293 motor driver, LCD Display, push buttons, Resistor,…
29 Nov 2022 03:54 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Project 2:- Object :- In this project the implementation of code for “Measuring distance of an object using ultrasonic distance sensor. circuit Diagram:- Connections:- The analog pin A4 pin is connected to Trigger pin at ultra sonic sensor.The analog pin A5 pin is connected to Echo pin at ultra sonic sensor The digital…
23 Oct 2022 07:59 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Interfacing a 16*2 LCD with Arduino using I2C protocol Objective:- To send a meaasge from slave to master using Inter-Integrated Circuit (I2C) communication protocol in arduino and…
17 Oct 2022 08:30 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
project 2 :- #includevoid Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};typedef enum State{ GEAR_DOWN,…
08 Sep 2022 11:25 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
project 2 :- #include<stdio.h>void Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};typedef…
05 Sep 2022 05:45 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
project 2 :- #include<stdio.h>void Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};typedef…
04 Sep 2022 08:19 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> // Link list nodestruct Node {int data;struct Node* next;};//function declarationvoid push(struct Node** head_ref, int new_data);int isPresent(struct Node* head, int data);// Function to get union of two linked lists head1 and head2struct Node* getUnion(struct Node* head1, struct Node* head2){struct…
30 Aug 2022 07:50 AM IST