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

#include // initialize the library with the numbers of the interface pinsLiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); // Print a message to the LCD. lcd.print("hello, world!");} void loop() { // set the cursor to column 0, line 1 // (note: line…

    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 Vani Bongoni (6)

    Project 2 - V&V SW Analysis II

    Objective:

    The below files are the reports .

    calendar

    25 Mar 2022 12:24 PM IST

      Read more

      Project 1 - V&V SW Analysis - I

      Objective:

      if(Owner switch on the phone) { (Company logo at the center of the screen) } else if(customer switch on the phone) { (All my icons of the APPS shall be present in the grid) } else if(owner powered on the phone) { (the "call the phone" icon is the first icon and the "Dictionary" icon…

      calendar

      22 Mar 2022 10:01 AM IST

        Read more

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

        Objective:

        current state valve output next state state A pressure =0 extension state B state B prtessure= 1 retraction state A     #include<stdio.h>     static volatile int pressure; static volatile int output; void Init_Landing _gear() {      pressure = 0;     output = 0;  …

        calendar

        14 Mar 2022 11:54 AM IST

          Read more

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

          Objective:

          #include // initialize the library with the numbers of the interface pinsLiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); // Print a message to the LCD. lcd.print("hello, world!");} void loop() { // set the cursor to column 0, line 1 // (note: line…

          calendar

          11 Mar 2022 01:58 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:

            #define WINDOW_SIZE 5int INDEX = 0;int VALUE = 0;int IN_PIN= 7;int SUM = 0;int READINGS[WINDOW_SIZE];int AVERAGED = 0;   void setup() {pinMode(IN_PIN, INPUT);Serial.begin(9600);}   void loop() { SUM = SUM - READINGS[INDEX]; // Remove the oldest entry from the sumVALUE = analogRead(IN_PIN); // Read the next sensor…

            calendar

            11 Mar 2022 08:26 AM IST

              Read more

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

              Objective:

              #include <stdbool.h>  //header file #include <stdio.h>     //header file#include <stdlib.h>    //header file// Link list node struct Node{ int data;struct Node* next; };// A  function to insert a node at the beginning ofa linked list void push(struct Node** head_ref,int…

              calendar

              05 Mar 2022 04:11 AM IST

                Read more
                Showing 1 of 6 projects