Menu

IIT Certification 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 Amol Survase (9)

    Project 2 - V&V SW Analysis II

    Objective:

    Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them.   Perform Integration testing by including all the .C files available in the folder location C:\**\LDRA_workarea\Examples\Toolsuite\Cashregister_6.0\ **            A)Create…

    calendar

    10 Oct 2023 02:49 AM IST

      Read more

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

      Objective:

      /* P2: Measure Distance using Ultrasonic Distance Sensor *//// Master code#include#includeLiquidCrystal 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);  lcd.print("inch"); …

      calendar

      10 Oct 2023 02:03 AM IST

        Read more

        Project 1 - V&V SW Analysis - I

        Objective:

         Test plan to test features of a new mobile phone (Blackbox test) that needs to be implemented based on the following requirements. (The product is still under development stage and is yet to be UA (User Acceptance ) tested .Every other thing to be included in the test plan can be hypothetical.

        calendar

        02 Oct 2023 11:04 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

          09 Sep 2023 01:59 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#includeLiquidCrystal 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);  lcd.print("inch"); …

            calendar

            08 Aug 2023 05:08 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#includeLiquidCrystal lcd(6,7,2,3,4,5);#define SLAVE_ADDR 8#define NameSize 20 void setup(){Wire.begin();lcd.begin(16,2);Serial.begin(9600);} void loop(){Wire.requestFrom(SLAVE_ADDR,NameSize);String MyName="";while(Wire.available()){char b=Wire.read();MyName+=b;}lcd.setCursor(0,0);lcd.print(MyName);Serial.println(MyName);}…

              calendar

              30 Jul 2023 01:01 PM IST

                Read more

                Project 3

                Objective:

                #include #include using namespace std;enum Type { GAS, DIESEL, ELECTRIC};class Vehicle {protected: string make; string model; int year; int odometer;public: Vehicle(const string& make, const string& model, int year, int odometer) : make(make), model(model), year(year), odometer(odometer) {}string getMake() const { return…

                calendar

                14 Jun 2023 03:43 PM IST

                  Read more

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

                  Objective:

                  Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear   #include<stdio.h> #include<stdlib.h>   /* Functions used in our projects*/ void Initial_state_machine(); //function declaration void Gear_down(); void Checking_before_takeoff(); void Raising_gear();…

                  calendar

                  28 Apr 2023 10:56 AM 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 - 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> // A structure of linked list nodestruct node { int data; struct node *next; } *LLamol, *LLraj, *unionLL,…

                    calendar

                    23 Apr 2023 07:06 AM IST

                      Read more
                      Showing 1 of 9 projects