CODE: #define F_CPU 8000000UL//Microcontroller clock speed #include <avr/io.h>//Header file for AVR functions #include <avr/interrupt.h>//Header file for interrupt #include <util/delay.h>//Header file for delay loop #include <string.h>//Header file for String manipulation functions #include <stdlib.h>//Standard…
Ashagarupavan kumar
updated on 13 Jun 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 Ashagarupavan kumar (9)
Project 2 - V&V SW Analysis II
1.To perform the static code review analysis for : C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c Output: Reports of the given file are with no violations Steps: -Login with user30 and open the LDRA tool. -Open the source and select the file given in the question. -Then perform the static code analysis…
02 Jul 2023 09:55 PM IST
Project 1 - V&V SW Analysis - I
TEST PLAN: if(owner switch on the phone){Company logo at the centre of the screen;}elseif(customer press the power button){open apps in grid;}elseif(owner power on the phone){shows call the phone icon in the first position at the bottom;}elseif(owner power on the phone){shows Dictionary icon on the second position at the…
28 Jun 2023 06:47 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
CODE: #include <avr/io.h>//Header file for AVR Functions #define F_CPU 16000000//Micro controller clock speed #include <util/delay.h>//Header file for delay loops #include "avr/interrupt.h" #define sw_dir (PIND & (1<<1))//Direction control pin P1 #define sw_spd (PIND & (1<<2))//P2 pin as…
13 Jun 2023 07:48 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
CODE: #define F_CPU 8000000UL//Microcontroller clock speed #include <avr/io.h>//Header file for AVR functions #include <avr/interrupt.h>//Header file for interrupt #include <util/delay.h>//Header file for delay loop #include <string.h>//Header file for String manipulation functions #include <stdlib.h>//Standard…
13 Jun 2023 07:15 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
AIM: Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter. MATERIALS REQUIRED: 1.Arduino Uno R3. 2.BreadBoard. 3.LCD display (16*2). 4.Ultrasonic sensor 5.Resistor(1kohm). 6.Jumping Wires. CODE: #include<LiquidCrystal.h>//Library for I2C communicationsLiquidCrystal…
19 May 2023 11:29 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
AIM: Interfacing a 16*2 LCD with Arduino using I2C protocol MATERIALS REQUIRED: 1.ARDUINO UNO R3. 2.Potentiometer(250kohms). 3.Bread board. 4.Resistors (1Kohm). 5.LCD (16*2) DISPLAY. 6.Jumping wires. MASTER CODE: #include//Library for LCD display functions#include//Library for I2C CommunicationLiquidCrystal…
18 May 2023 09:25 PM IST
Project 3 Object Oriented Library to track Automobile Maintenance
//============================================================================// Name : Project.c++// Author : A.PAVAN KUMAR//============================================================================ #include //Standard library functionusing namespace std; …
21 Apr 2023 08:21 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include<stdio.h> //Standard library function#include<stdlib.h>//standard library Used for functions and type conversions //Declaring the functionsvoid GearUp();void GearDown();void RaisingGear();void LoweringGear();void CheckBeforeLanding();void CheckBeforeTakeoff(); //Creating a enum of required statetypedef…
18 Mar 2023 08:27 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
#include<stdio.h>#include<stdlib.h>#include<stdbool.h> typedef struct node//defining the structure{int data;// creating the data type of the variablestruct node *next;// creating self referential node }Node; // Declaring the different varable in structure typestatic Node *head1,*head2,*head_union,*head_intersection,*newnode,*tail,*res_union,*res_intersection;…
16 Mar 2023 11:25 AM IST