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 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

Abinaya Batch /*  * GccApplication AVR Bare Material Project 2.c  *  * Created: 15-07-2023 23:34:58  * Author : naska  */    #define F_CPU 8000000UL #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #include <string.h> #include <stdlib.h>…

    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 Sourav Naskar (9)

    Project 2 - V&V SW Analysis II

    Objective:

      Abinaya Batch 1.  Static Code Review Analysis: Static code review is a technique used to review and analyze source code without executing the code. The goal is to identify potential defects, code quality issues, security vulnerabilities, and adherence to coding standards. Steps for Static Code Review Analysis: Code Inspection:…

    calendar

    19 Jul 2023 09:06 AM IST

      Read more

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

      Objective:

      Abinaya Batch /*  * GccApplication AVR Bare Material Project 2.c  *  * Created: 15-07-2023 23:34:58  * Author : naska  */    #define F_CPU 8000000UL #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #include <string.h> #include <stdlib.h>…

      calendar

      15 Jul 2023 06:32 PM IST

        Read more

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

        Objective:

         Abinaya Batch   *  * GccApplication4 AVR Project1.c  *  * Created: 15-07-2023 22:52:29  * Author : naska  */    #include <avr/io.h> #define F_CPU 16000000L #include "avr/interrupt.h" #include <util/delay.h> #define sw_dir (PIND & (1<<1)) // TXD pin in…

        calendar

        15 Jul 2023 05:44 PM IST

          Read more

          Project 1 - V&V SW Analysis - I

          Objective:

          Test Plan: Blackbox Testing for New Mobile Phone Introduction: Purpose: The purpose of this test plan is to outline the blackbox testing approach for the features of the new mobile phone. Scope: This test plan covers the functional requirements mentioned below, which need to be implemented and validated. Test Environment:…

          calendar

          12 Jul 2023 04:16 PM IST

            Read more

            Project 3

            Objective:

            // Abinaya Batch//Project 3 is done by Sourav Naskar#include <iostream>using namespace std;#define size 2#define MAXKM 50000class vehicle{ public:// vehicle()//~vehicle()public:string make,model,type;enum TYPE{GAS,ELECTRIC,DIESEL};int year;float odometer;virtual void setmake();virtual void putmake();virtual void…

            calendar

            27 Jun 2023 05:09 PM IST

              Read more

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

              Objective:

              Abinaya Batch   #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(); void Gear_up(); void Checking_before_landing(); void Lowering_gear();   typedef…

              calendar

              13 Jun 2023 07:16 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 is done by Sourav Naskar #include<stdio.h>#include<stdlib.h>#include<math.h> typedef struct node//defining the structure{ int data;//creating the data type of the variable struct node *next;// creating self referential node}Node;//changing the structure name as node static Node *head1,*head2,*head,*head_union,*head_intersection,*newnode,*tail,*res_union,*res_intersection;//declaring…

                calendar

                31 May 2023 12:48 PM 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:

                  https://www.tinkercad.com/things/7qSANvtfJn7-sourav-naskar/editel?sharecode=QlNzcsha9eDD5uj6Dph9PyeeRweAFMZzgwnEyxtTOHs #define IN_PIN A0#define WINDOW_SIZE 5int INDEX = 0;int VALUE=0;int READINGS[WINDOW_SIZE];int trigPin = 11; // Triggerint echoPin = 10; // Echolong duration, cm, inches;long SUM=0;long AVERAGED;int i;…

                  calendar

                  10 May 2023 07:35 AM IST

                    Read more

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

                    Objective:

                    //MASTER CODE #include<Wire.h> //Library for I2C Communication functionS #include<LiquidCrystal.h> //Library for LCD display function LiquidCrystal lcd(12, 11, 5, 4, 3, 2); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) char Mreceive[10];//String to RECEIVE the message char Msend[9];//String to SEND the message…

                    calendar

                    09 May 2023 06:39 PM IST

                      Read more
                      Showing 1 of 9 projects