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…
Tirlika Baby venkata Anusha
updated on 14 Sep 2022
Project Details
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.
Other comments...
Read more Projects by Tirlika Baby venkata Anusha (13)
Week - 4
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…
20 Oct 2022 10:50 AM IST
Week -2
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…
17 Oct 2022 08:55 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
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);…
29 Sep 2022 02:09 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
#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");…
29 Sep 2022 01:56 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
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…
23 Sep 2022 09:23 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
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" //…
16 Sep 2022 03:15 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
#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(">>…
16 Sep 2022 11:35 AM IST
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…
14 Sep 2022 04:11 AM IST
Project 2 - V&V SW Analysis II
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…
03 Sep 2022 03:21 PM IST
Project 1 - V&V SW Analysis - I
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…
16 Aug 2022 06:42 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#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,…
08 Aug 2022 08:00 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
#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…
01 Aug 2022 11:01 AM IST