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

    interfacing 16x2 LCD with Arduino In this digital age, we come across LCDs all around us from simple calculators to smartphones, computers and television sets, etc. The LCDs use liquid crystals to produce images or texts and are divided into different categories based on different criteria like…

    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 Tirlika Baby venkata Anusha (13)

    Week - 4

    Objective:

    1.) Aim:-  Implement control logic of "washing machine" Using stateflow as per given sequence: PROCEDURE:-    Working Principle of A Machine:              A washing machine by spinning at 800-1600rpm helpss soap or dirt with leave it the surface of the cloth via centrifugal…

    calendar

    20 Oct 2022 10:50 AM IST

      Read more

      Project

      Objective:

        Your Answers 1.AIM:-      To propre to  technical report of simulation of BAJA ALL-TERRAIN Vehicle(ATV) Under different conditions. SOFTWARE:          1)MATLAB          2)Simulink          3)Simscape      …

      calendar

      20 Oct 2022 10:36 AM IST

      • MATLAB
      Read more

      Week -2

      Objective:

      Doorbell: A doorbell is a signaling device typically placed near a door to a building's entrance. When a visitor presses a button the bell rings inside the building, alerting the occupant to the presence of the visitor. The heart of a doorbell is an electromagnet. Electromagnets are coils of wire wrapped around a…

      calendar

      17 Oct 2022 08:55 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:

        ULTRASONIC SENSOR SCHEMATIC DIAGRAM CODE int inches = 0; int cm = 0; long readUltrasonicDistance(int triggerPin, int echoPin) { pinMode(triggerPin, OUTPUT); // Clear the trigger digitalWrite(triggerPin, LOW); delayMicroseconds(2); // Sets the trigger pin to HIGH state for 10 microseconds digitalWrite(triggerPin, HIGH);…

        calendar

        29 Sep 2022 02:09 PM IST

          Read more

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

          Objective:

          #include<Wire.h> //Library for I2C Communication functions#include<LiquidCrystal.h> //Library for LCD display functionLiquidCrystal lcd(2, 7, 8, 9, 10, 11); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) void setup() {lcd.begin(16,2); //Initilize LCD displaylcd.setCursor(0,0); //Sets Cursor at first line of Displaylcd.print("CYIENT");…

          calendar

          29 Sep 2022 01:56 PM IST

            Read more

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

            Objective:

            AIM: In this project, the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04) CODE: #define F_CPU 8000000UL#include <avr/io.h>#include <avr/interrupt.h>#include <util/delay.h>#include <string.h>#include <stdlib.h> #define LCD_Data_Dir…

            calendar

            23 Sep 2022 09:23 AM IST

              Read more

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

              Objective:

              AIM: Implement a system on the simulator for controlling a DC motor using L293 motor driver, monitor its status and print the running status of motor on the LCD Display. CODE: #include <avr/io.h> //we are using I/O registers of AVR#define F_CPU 16000000L // define the crystal frequency#include "avr/interrupt.h" //…

              calendar

              16 Sep 2022 03:15 PM IST

                Read more

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

                Objective:

                    #include                        //Library for LCD display function LiquidCrystal lcd(12, 11, 5, 4, 3, 2);         //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) int val1=A4;  int val2=A5; void setup() { lccd.begin(16,2); } void loop() { lcd.setCursor(0,0);                     //Sets Cursor at line one of LCD lcd.print(">>…

                calendar

                16 Sep 2022 11:35 AM IST

                  Read more

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

                  Objective:

                      interfacing 16x2 LCD with Arduino In this digital age, we come across LCDs all around us from simple calculators to smartphones, computers and television sets, etc. The LCDs use liquid crystals to produce images or texts and are divided into different categories based on different criteria like…

                  calendar

                  14 Sep 2022 04:11 AM IST

                    Read more

                    Project 2 - V&V SW Analysis II

                    Objective:

                    1)  Connect the user between 4 to 10 in LDRA tool..then u have to follow this steps.  Steps used in order to do test are. start LDRA TBrun.From the LDRA page select source->single file->choose Ggroceries.c->open.(in log view all the files will run)sequence->new->give any name(kkk)& select code…

                    calendar

                    03 Sep 2022 03:21 PM IST

                      Read more

                      Project 1 - V&V SW Analysis - I

                      Objective:

                      Black box testing is a technique of software testing which examines the functionality of the software without peering into its internal structure or coding. The primary source of black-box testing is a specification of requirements that are stated by the customer In this method, the tester selects a function and gives…

                      calendar

                      16 Aug 2022 06:42 AM IST

                        Read more

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

                        Objective:

                        #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 enum states { GEAR_DOWN,…

                        calendar

                        08 Aug 2022 08:00 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:

                          #include<stdio.h>#include<stdlib.h>//structure of linked liststruct node{ int data; struct node *next;}*linklistone,*linklisttwo,*unionll,*intersectionll;void initialise(){ linklistone=linklisttwo=NULL;}//function used to insert the num into listvoid insert(struct node **head,int num){ //we allocate node struct…

                          calendar

                          01 Aug 2022 11:01 AM IST

                            Read more
                            Showing 1 of 13 projects