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

Tinker Cad Plateform: Arduino Code:1   // C++ code//#include<Wire.h> //Include I2C Library#include <LiquidCrystal.h> //Include LCD16x2 Library LiquidCrystal lcd(2,3,4,5,6,7,8); //Define an object for lcd interfacing and define RS,RW,E,D4,D5,D6,D7 pins byte x=0;void setup(){ Wire.begin(); //Begin I2C Bus.…

    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 Vetrivel M S (3)

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

    Objective:

    Tinker Cad Plateform: Arduino Code:1   // C++ code//#include<Wire.h> //Include I2C Library#include <LiquidCrystal.h> //Include LCD16x2 Library LiquidCrystal lcd(2,3,4,5,6,7,8); //Define an object for lcd interfacing and define RS,RW,E,D4,D5,D6,D7 pins byte x=0;void setup(){ Wire.begin(); //Begin I2C Bus.…

    calendar

    30 Sep 2022 04:30 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:

      Arduino Code: TinkerCad Plateform:   // C++ code//double filter_values[5] = {0,0,0,0,0}; //Initialize array of length 5 to store the previous sensor data to calculate the moving average valueint current_array_pos = 0; //Initialize current arrary position variable as 0 void setup(){ Serial.begin(9600); //Start Serial UART…

      calendar

      30 Sep 2022 03:18 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:

        .c file has been attached below. I wrote a program to get two sets as a list from the user and finds Union and Intersection.I did not sort the list because it was not mentioned to sort it in the question but I checked for repetition of data and coded accordingly. The screenshot of the Output has also been uploaded.  …

        calendar

        13 Aug 2022 09:46 AM IST

          Read more
          Showing 1 of 3 projects