0% found this document useful (0 votes)
11 views

Robotics 3.4 LCD I2C (1)

The document outlines a lesson plan where 85% of students are expected to identify, explain, and program an LCD I2C using Arduino. It includes activities for group collaboration, song performances, and evaluation criteria. Additionally, it provides programming examples and assignments related to sensors and programming tasks.

Uploaded by

rhenzmarduhig10
Copyright
© © All Rights Reserved
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views

Robotics 3.4 LCD I2C (1)

The document outlines a lesson plan where 85% of students are expected to identify, explain, and program an LCD I2C using Arduino. It includes activities for group collaboration, song performances, and evaluation criteria. Additionally, it provides programming examples and assignments related to sensors and programming tasks.

Uploaded by

rhenzmarduhig10
Copyright
© © All Rights Reserved
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 25

At the end of the lesson 85% of the students are expected to:

a. identify an LCD I2C and its parts.


b. explain the functions of an LCD I2C.
c. construct and create a program for an LCD I2C application
using arduino.
How does an Arduino Uno differ from an
Arduino nano?
How do you power up an Arduino Uno
board?
Solve the mystery word using the pictures
given.

LIQUID
Solve the mystery word using the pictures
given.

DISPLAY
Solve the mystery word using the pictures
given.

CRYSTAL
Ardunio
LCD I2C
LCD I2C

Unlocking of Terms

1. Technology - the application of scientific knowledge


teknolohiya (fil.) for practical purposes, especially in
industry.

2. Information - what is conveyed or represented by a


impormasyon (fil.) particular arrangement or sequence of
things.
LCD I2C

An Arduino LCD (Liquid Crystal Display) is a type of


display module that can be connected to an Arduino
microcontroller board to display information or data. It
consists of a small screen that displays characters or
graphics using liquid crystal technology.
LCD I2C
LCD I2C
LCD I2C

LCD I2C 16x2 includes 16 columns and 2 rows. The columns


and rows are indexed from 0.
LCD I2C
LCD I2C

#include <LiquidCrystal_I2C.h> // Library for LCD


LiquidCrystal_I2C lcd(0x27, 16, 2); // I2C address 0x27, 16 column and 2 rows
lcd.init(); //initialize the lcd
lcd.backlight(); //open the backlight
lcd.setCursor(column_index, row_index);
lcd.print("Hello World!");
LCD I2C

#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 16, 2);

void setup() {
lcd.init(); // initialize the lcd
lcd.backlight();
}
LCD I2C

void loop() {
lcd.clear();
lcd.setCursor(3, 0);
lcd.print("WELCOME TO");
lcd.setCursor(3, 1);
lcd.print("SSTC COMLAB");
delay(2000);
LCD I2C

lcd.clear();
lcd.setCursor(3, 0);
lcd.print("ROBOTICS 3");

lcd.setCursor(5, 1);
lcd.print("ICT 3");
delay(2000);
}
Ultrasonic Sensor
Activity Proper:

1. The class will be divided into 8. Each Group will perform the
activity. Instructions are given on how to assemble the circuit.
Sample codes are also given. You will use your psychomotor and
analytical skills in assembling and making the device works.”
2. The eight groups will work quietly and collaborate with all your
members. All of you will try to make the device and program it
correctly. You must respect all your members’ ideas and listen to
them.

3. When the time is up, the groups will select a reporter that will
present your outputs. All groups will be given equal chance to
present and defend your answers
LCD I2C
Activity Proper:

1. Groups 1 and 2 will display at least to 4 to 5 stanzas of any


OPM songs.

2. Groups 3 and 4 will display at least 4 to 5 stanzas of any Filipino


rap song.

3. Groups 5 and 6 will display at least 4 to 5 stanzas of any foreign


songs.

4. Groups 7 and 8 will display at least 4 to 5 stanzas of any


inspirational songs.
LCD I2C
Evaluation:

1. Groups 1 and 2 will display at least to 4 to 5 stanzas of any


OPM songs.

2. Groups 3 and 4 will display at least 4 to 5 stanzas of any Filipino


rap song.

3. Groups 5 and 6 will display at least 4 to 5 stanzas of any foreign


songs.

4. Groups 7 and 8 will display at least 4 to 5 stanzas of any


inspirational songs.
LCD I2C
Rubrics:

Criteria 4-Excellent 3-Very Good 2-Fair 1-Needs


Improvement

1.Accuracy 4 3 2 1

2. Creativity/ 4 3 2 1
Neatness

3. Timeliness 4 3 2 1

4. Delivery of 4 3 2 1
Report
LCD I2C

“What are the functions and uses of LCD I2C?”


Quiz 1.4

Create a program to display this message in LCD I2C:

“We love programming! “


“We love robotics!”
Assignment:

Research what is a humidity and temperature


sensor.

You might also like