#include <avr/io.h> #define F_CPU 16000000ul #include "avr/interrupt.h" #include <util/delay.h> #define switch_direction (PIND&(1<<1)) #define switch_speed (PIND&(1<<2)) #define power (PINC&(1<<3)) #define lcd_port PORTB #define RS_high PORTD|=(1<<5) #define RS_low PORTD&=~(1<<5)#define…
MADHU D
updated on 09 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 MADHU D (8)
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Batch- Live Batch(Preeti) Name- Madhu D Aim: To write a program for controlling the retraction and extension of Airplane’s landing gear using Finite State Machine (FSM). Theary: A finite state machine that can, at any point in time, be in a specific state from a finite set of possible states. It can move…
15 Nov 2022 06:12 AM IST
Project 2 - V&V SW Analysis II
Batch- Live Batch(Preeti) Name- Madhu D 1) Static Code review Analysis Loading the "Testrain.c" file Running Static Analysis Code review report Report files are uploaded test is performed for Black box testing and White box testing. 2. A)Creating the test cases manually as well as automatically B)store the test…
14 Nov 2022 07:27 AM IST
Project 1 - V&V SW Analysis - I
Batch- Live Batch(Preeti) Name- Madhu D AIM: To write a Test plan to test the features of a new mobile phone, that needs to be implemented based on the given requirements. Theory of test plan: The main objective for a test plan is to…
12 Nov 2022 12:00 PM IST
Project 2 Adaptive Cruise Control
NAME: MADHU D BATCH: 07 AIM: To develop the model of Adaptive Cruise Control feature as per the given requirement using MATLAB Simulink. MODEL: Requirement 1– Lead Vehicle: Lead Vehicle is a vehicle which is driving in the road ahead of our drive vehicle. Two input…
09 Nov 2022 05:38 PM IST
Project 1 (Mini Project on Vehicle Direction Detection
NAME: MADHU D BATCH: 07 AIM: To development a Vehicle Direction Detection MATLAB Simulink model as per requirement. MODEL: Requirement - 1: Steering wheel input as yaw rate (Signal name: SteeringWheel_YawDegreeInput) is the input for this system. This is compared against 3 angular values, one…
02 Nov 2022 07:05 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
NAME: Madhu D BATCH: LIVE BATCH 12 PROGRAM: #include <stdio.h> //Adding standard input output header file #include <stdlib.h> //adding standard library header file // A structure of linked list node struct node { int data; struct node *next; } *List1, *List2, *Unionlist, *intersectionlist; void initialize()…
25 Oct 2022 03:41 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
unsigned int pulse_width;void trigger(){ Serial.begin(9600); // baud rate PORTB|= (1<<PORTB1); Serial.print(" Distance "); Serial.print(" Measurement "); _delay_us(2000);//wait for 2 seconds PORTB &= ~(1<<PORTB1);} void init_timer(){ ACSR |= (0<<ACIC);//Selecting ICP1 bit as Capture Input TIFR1 =…
10 May 2022 10:27 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
#include <avr/io.h> #define F_CPU 16000000ul #include "avr/interrupt.h" #include <util/delay.h> #define switch_direction (PIND&(1<<1)) #define switch_speed (PIND&(1<<2)) #define power (PINC&(1<<3)) #define lcd_port PORTB #define RS_high PORTD|=(1<<5) #define RS_low PORTD&=~(1<<5)#define…
09 May 2022 01:37 PM IST