Project 1 - Controlling a DC motor using PWM and monitoring its Running status Overview of the Project: 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. Goals: Implement a system on simulator…
Vedang More
updated on 03 Nov 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 Vedang More (9)
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 Sensor (28015 Ping).…
27 Feb 2023 11:00 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
In this project implementing the Code for “Interfacing a 16*2 LCD with two Arduino’s (one for Master and one for Slave) using Inter-Integrated Circuit (I2C) communication protocol” by sending the message to LCD using I2C communication protocol and display the message on LCD screen. Code Code MASTER #include// Header to…
27 Feb 2023 08:29 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
In this project implementing the Code for “Interfacing a 16*2 LCD with two Arduino’s (one for Master and one for Slave) using Inter-Integrated Circuit (I2C) communication protocol” by sending the message to LCD using I2C communication protocol and display the message on LCD screen. Code Code MASTER #include<LiquidCrystal.h>//…
23 Feb 2023 04:43 AM IST
Project 2 - V&V SW Analysis II
Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them. Step1 Step2 step3 step4 step5 step6 step7 step8 step9 step10 step11 step12 step13 step14 Perform Integration testing by including all the .C…
09 Nov 2022 06:15 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04) Code * project_2.c * * Created: 04-11-2022 12:20:49 * Author : Vedang More */ #include <avr/io.h> //AVR Preprocessor#define F_CPU 16000000L //CPU Frequency#include <util/delay.h> //Delay function#define rs_high PORTD |=(1<<0);//DEFINE…
04 Nov 2022 07:07 AM IST
Project 1 - V&V SW Analysis - I
if (product owner, long pressed power button) { Phone is switched ON; company logo at center of the screen; } else if (Customer, when the power button is pressed) { All my icons of the APPS shall be present in the grid; } else if (Product owner, when the phone is powered ON) { shows the “call…
03 Nov 2022 05:26 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Project 1 - Controlling a DC motor using PWM and monitoring its Running status Overview of the Project: 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. Goals: Implement a system on simulator…
03 Nov 2022 11:18 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 "set.h" int main(){ int A,B,i; // local variables Declaration // Allocation of memory in heap. tempA = malloc(sizeof(Node)); tempB = malloc(sizeof(Node)); // Asking to user to enter the number of elements of 1st linked list. printf("Enter the Number you are going to put in Set-A\n"); fflush(stdout); scanf("%d",&A);…
02 Oct 2022 06:31 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Live batch 10 embedded main code /* * main.c * * Created on: 27-Sep-2022 * Author: Vedang More */#include<stdio.h> #include "States.h"//states header file static void(*state_table[])(void) = {Gear_Down, Checking_Before_Takeoff,Raising_Gear, Gear_Up, Checking_Before_Landing, Lowering_Gear};//using…
28 Sep 2022 10:34 AM IST