Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Project 1 - Controlling a DC motor using PWM and monitoring its Running status

//* Project.1: Change the  Dc_Motor speed using PWM and directio also with display speed on LCD display *// #include #include         //header file #define F_CPU 8000000UL          // CPU frequency #include #define sw (PINB&(1< #define rs_high PORTD|=(1< #define rs_low  PORTD &=~(1< #define en_high PORTD |=(1<…

    Project Details

    Loading...

    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.

    Please  login to add a comment

    Other comments...

    No comments yet!
    Be the first to add a comment

    Read more Projects by Aditya kumbhar (9)

    Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

    Objective:

    //* P2: Measure Distance using Ultrasonic Distance Sensor *// // Master code #include #include LiquidCrystal lcd(2,3,4,5,6,7); int Distance;   void setup() {   Wire.begin();   Serial.begin(9600); }    void loop() {   Wire.requestFrom(8,1);   Distance=Wire.read();   lcd.setCursor(0,0);   lcd.print("Distace= ");   lcd.print(Distance);…

    calendar

    16 Oct 2023 05:28 AM IST

      Read more

      Project 1 - Controlling a DC motor using PWM and monitoring its Running status

      Objective:

      //* Project.1: Change the  Dc_Motor speed using PWM and directio also with display speed on LCD display *// #include #include         //header file #define F_CPU 8000000UL          // CPU frequency #include #define sw (PINB&(1< #define rs_high PORTD|=(1< #define rs_low  PORTD &=~(1< #define en_high PORTD |=(1<…

      calendar

      16 Oct 2023 04:39 AM IST

        Read more

        Project 2 - V&V SW Analysis II

        Objective:

        //* P2Q: Static Analysis only done on software to analyse code and structure of that and check that our code follow standard rule of MISRA guidlines or not . Following screenshots given information of Code review Report , Integration Testing report and Location of TCF file *//

        calendar

        12 Oct 2023 10:09 AM IST

          Read more

          Project 1 - V&V SW Analysis - I

          Objective:

          //* P_1: Test Plan has uploaded as World file below *//  

          calendar

          12 Oct 2023 10:02 AM IST

            Read more

            Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter

            Objective:

            //* P2: Measure Distance using Ultrasonic Distance Sensor *// // Master code #include #include LiquidCrystal lcd(2,3,4,5,6,7); int Distance;   void setup() {   Wire.begin();   Serial.begin(9600); }    void loop() {   Wire.requestFrom(8,1);   Distance=Wire.read();   lcd.setCursor(0,0);   lcd.print("Distace= ");   lcd.print(Distance);…

            calendar

            03 Oct 2023 02:18 PM IST

              Read more

              Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol

              Objective:

              //* P1: Code for Master to receive name and display on LCD *//   #include #include LiquidCrystal lcd(6,7,2,3,4,5); #define SLAVE_ADDR 8 #define NameSize 10   void setup() {   Wire.begin();   lcd.begin(16,2);   Serial.begin(9600); }   void loop() {   Wire.requestFrom(SLAVE_ADDR,NameSize);   String MyName="";   while(Wire.available())…

              calendar

              03 Oct 2023 01:58 PM IST

                Read more

                Project 3

                Objective:

                #include <iostream> #include <vector> using namespace std; enum Type {     GAS,     DIESEL,     ELECTRIC }; class Vehicle { protected:     string make;     string model;     int year;     int odometer; public:     Vehicle(const…

                calendar

                27 Jul 2023 07:19 AM IST

                  Read more

                  Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

                  Objective:

                  #include #include   /* Functions used in our projects*/ void Initial_state_machine(); //function declaration void Gear_down(); void Checking_before_takeoff(); void Raising_gear(); void Gear_up(); void Checking_before_landing(); void Lowering_gear();   typedef enum states { GEAR_DOWN, //ENUM IS USED TO GIVING SUBSEQUENT…

                  calendar

                  25 Jul 2023 02:38 PM IST

                    Read more

                    Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List

                    Objective:

                    //* Project 1: Program of mathemathical set theory(find union and intersection of two nodes using linklist *// #include<stdio.h>#include<stdlib.h> // A structure of linked list nodestruct node {int data;struct node *next; } *LLamol, *LLraj, *unionLL, *intersectionLL; void initialize() {LLamol = LLraj = NULL;}//Given…

                    calendar

                    18 Jul 2023 07:30 AM IST

                      Read more
                      Showing 1 of 9 projects