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 - Interfacing a 16*2 LCD with Arduino using I2C protocol

//Sending Data to MAster using I2C #include <Wire.h> void setup() { Wire.begin(8); // join i2c bus with address #8 Wire.onRequest(requestEvent); // register event} void loop() { delay(100);} // function that executes whenever data is requested by master// this function is registered as an event, see setup()void requestEvent()…

    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 Hemant Jaisingpure (7)

    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<string.h> char Lights[10]; char Lever[10]; void Set_Light_Red() { strcpy(Lights, "Red"); }/*function to set light RED*/ void Set_Light_Green() { strcpy(Lights, "Green");…

    calendar

    18 Jun 2022 05:46 PM IST

      Read more

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

      Objective:

      Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) --> #include #define Max 50 //define max value //define array to get values int S1[Max]; int S2[Max]; int S3[Max]; void Get_set_value(int S[],int n) { int i; fflush(stdout); for(i=1;i

      calendar

      18 Jun 2022 06:52 AM IST

        Read more

        Project 1 - V&V SW Analysis - I

        Objective:

        I have attached doc file for above question, PFA.

        calendar

        19 Apr 2022 02:59 PM IST

          Read more

          Project 2 - V&V SW Analysis II

          Objective:

          I have attached the doc file which include all the output reports, PFA.

          calendar

          19 Apr 2022 02:33 PM IST

            Read more

            Project 1 - Development of TFT Cluster Speedmeter Software Component

            Objective:

            I have attached the all mentioned result and model file. PFA.

            calendar

            02 Apr 2022 02:23 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:

              //Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter   int inches = 0; int cm = 0; long readUltrasonicDistance(int triggerPin, int echoPin){ pinMode(triggerPin, OUTPUT); // Clear the trigger digitalWrite(triggerPin, LOW); delayMicroseconds(2);…

              calendar

              16 Mar 2022 11:20 AM IST

                Read more

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

                Objective:

                //Sending Data to MAster using I2C #include <Wire.h> void setup() { Wire.begin(8); // join i2c bus with address #8 Wire.onRequest(requestEvent); // register event} void loop() { delay(100);} // function that executes whenever data is requested by master// this function is registered as an event, see setup()void requestEvent()…

                calendar

                16 Mar 2022 11:16 AM IST

                  Read more
                  Showing 1 of 7 projects