Note
Hello, welcome to the SunFounder Raspberry Pi & Arduino & ESP32 Enthusiasts Community on Facebook! Dive deeper into Raspberry Pi, Arduino, and ESP32 with fellow enthusiasts.
Why Join?
Expert Support: Solve post-sale issues and technical challenges with help from our community and team.
Learn & Share: Exchange tips and tutorials to enhance your skills.
Exclusive Previews: Get early access to new product announcements and sneak peeks.
Special Discounts: Enjoy exclusive discounts on our newest products.
Festive Promotions and Giveaways: Take part in giveaways and holiday promotions.
👉 Ready to explore and create with us? Click [here] and join today!
17. Exploring the I2C LCD1602 Display¶
Welcome to our practical guide on using the I2C LCD1602! In this lesson, we’ll uncover the essentials of working with this versatile display module. You’ll learn how to set up the I2C LCD1602 with your Arduino, find its unique I2C address, and install the necessary libraries to get it up and running. By the end, you’ll know how to send commands and display text, turning lines of code into clear, readable information on your screen.
Upon completing this course, you will be able to:
Understand the basic functions of the I2C LCD1602 module.
Learn how to obtain the I2C address of devices within the Arduino environment.
Master the installation and use of libraries in the Arduino IDE.
Implement the display of custom messages and data on the I2C LCD1602.
Build the Circuit¶
Components Needed
1 * Arduino Uno R3 |
1 * I2C LCD1602 |
1 * Breadboard |
1 * USB Cable |
Jumper Wires |
|||
Building Steps
Follow the wiring diagram, or the steps below to build your circuit.
Locate the I2C LCD1602 module.
GND: Ground
VCC: Voltage supply, 5V.
SDA: Serial data line. Connect to VCC through a pullup resistor.
SCL: Serial clock line. Connect to VCC through a pullup resistor.
As we all know, though LCD and some other displays greatly enrich the man-machine interaction, they share a common weakness. When they are connected to a controller, multiple IOs will be occupied of the controller which has no so many outer ports. Also it restricts other functions of the controller.
Therefore, LCD1602 with an I2C module is developed to solve the problem. The I2C module has a built-in PCF8574 I2C chip that converts I2C serial data to parallel data for the LCD display.
Backlight/Contrast
Backlight can be enabled by jumper cap, unplugg the jumper cap to disable the backlight. The blue potentiometer on the back is used to adjust the contrast (the ratio of brightness between the brightest white and the darkest black).
Shorting Cap: Backlight can be enabled by this cap, unplugg this cap to disable the backlight.
Potentiometer: It is used to adjust the contrast (the clarity of the displayed text), which is increased in the clockwise direction and decreased in the counterclockwise direction.
The Uno R3 board has two sets of I2C pins. You can connect the I2C LCD1602 to either set of pins.
Now, let’s connect the I2C LCD1602 to the Arduino Uno R3 board.
Code Creation - Retrieving the I2C Address¶
Before using an I2C device, you generally need to find out its address. Let’s see how to do that.
Open the Arduino IDE and start a new project by selecting “New Sketch” from the “File” menu.
Save your sketch as
Lesson17_I2C_Scanner
usingCtrl + S
or by clicking “Save”.Copy the following code into your new sketch, then save it.
#include <Wire.h>
void setup() {
Wire.begin();
Serial.begin(9600);
while (!Serial); // Wait for the serial connection to be established
Serial.println("\nI2C Scanner");
}
void loop() {
byte error, address;
int nDevices;
Serial.println("Scanning...");
nDevices = 0;
for (address = 1; address < 127; address++) {
Wire.beginTransmission(address);
error = Wire.endTransmission();
if (error == 0) {
Serial.print("I2C device found at address 0x");
if (address < 16) {
Serial.print("0");
}
Serial.println(address, HEX);
nDevices++;
}else if (error == 4) {
Serial.print("Unknown error at address 0x");
if (address < 16) {
Serial.print("0");
}
Serial.println(address, HEX);
}
}
if(nDevices == 0) {
Serial.println("No I2C devices found\n");
}else {
Serial.println("done\n");
}
delay(5000); // Wait 5 seconds before scanning again
}
Click the Upload button. If your I2C LCD1602 is connected correctly, you will see information displayed. The default address is basically 0x27, in a few cases it may be 0x3F.
Scanning...
I2C device found at address 0x27
done
Code Creation - Displaying Messages¶
Now, let’s look at how to display desired messages on the I2C LCD1602.
Open the Arduino IDE and start a new project by selecting “New Sketch” from the “File” menu.
Save your sketch as
Lesson17_I2C_Show
usingCtrl + S
or by clicking “Save”.To use the I2C LCD1602 module, you need to include the appropriate library. However, unlike the
Servo
library we used before, Arduino does not come with the necessary library for the I2C LCD1602. You need to search for and install it from the Library Manager in the Arduino IDE.
Now, search for LiquidCrystal I2C
on the Library Manager, then click INSTALL.
After the installation is complete, you will receive a notification. Typically, the library includes some example code to help you learn how to use its functions. You can find these examples by clicking File -> Examples -> LiquidCrystal I2C. There are three example codes available; you can open one of them, upload it to your Arduino board, and see what happens.
Now, let’s start coding. Before using each library, it is essential to include it in your sketch.
Wire.h
is crucial for I2C communication, enabling the interface with the LCD.LiquidCrystal_I2C.h
is specifically designed for managing LCD displays that connect through the I2C bus.
#include <Wire.h> // Includes I2C communication library.
#include <LiquidCrystal_I2C.h> // Includes library for controlling the I2C LCD.
void setup() {
// put your setup code here, to run once:
}
Now, we create an instance of the
LiquidCrystal_I2C
class namedlcd
. The parameters (0x27
,16
,2
) specify the I2C address of the LCD (0x27
) and that the display has 16 characters per line and 2 lines.
#include <Wire.h> // Includes I2C communication library.
#include <LiquidCrystal_I2C.h> // Includes library for controlling the I2C LCD.
LiquidCrystal_I2C lcd(0x27, 16, 2); // Initializes LCD at address 0x27 for a 16x2 display.
void setup() {
// put your setup code here, to run once:
}
In the
void setup()
function, initializes the LCD display withlcd.init()
and then turns on the backlight withlcd.backlight()
. This makes the display visible.
#include <Wire.h> // Includes I2C communication library.
#include <LiquidCrystal_I2C.h> // Includes library for controlling the I2C LCD.
LiquidCrystal_I2C lcd(0x27, 16, 2); // Initializes LCD at address 0x27 for a 16x2 display.
void setup() {
// put your setup code here, to run once:
lcd.init(); // initialize the lcd
lcd.backlight(); // Turns on the LCD backlight.
}
Start by displaying “Let’s count!” on row 0, column 0 of the I2C LCD1602 (which is actually the first row and first column). Use the
lcd.setCursor()
function to place the cursor at row 0, column 0, then uselcd.print()
to print the desired characters. Remember to enclose the text in double quotes (“”).
void loop() {
lcd.setCursor(0, 0); // Sets cursor to top-left corner.
lcd.print("Let's count"); // Displays "Hello World".
}
Next, print “Count” followed by the count value on row 1, column 0 (which is actually the second row and first column). Note that for printing characters and strings, enclose them in double quotes (“”), but for variables, just write the variable name inside the brackets.
void loop() {
lcd.setCursor(0, 0); // Sets cursor to top-left corner.
lcd.print("Let's count"); // Displays "Hello World".
lcd.setCursor(0, 1); // Moves cursor to second line.
lcd.print("Count: "); // Displays "Count".
lcd.print(count); // Prints current count next to "Count".
}
Let the variable
count
increase by one every second usingcount++
, which adds 1 to the variable itself.
void loop() {
lcd.setCursor(0, 0); // Sets cursor to top-left corner.
lcd.print("Let's count"); // Displays "Hello World".
lcd.setCursor(0, 1); // Moves cursor to second line.
lcd.print("Count: "); // Displays "Count".
lcd.print(count); // Prints current count next to "Count".
delay(1000); // Pauses for one second.
count++; // Increments counter.
}
Finally, clear the display with
lcd.clear()
to prepare for the next number to be displayed.
#include <Wire.h> // Includes I2C communication library.
#include <LiquidCrystal_I2C.h> // Includes library for controlling the I2C LCD.
LiquidCrystal_I2C lcd(0x27, 16, 2); // Initializes LCD at address 0x27 for a 16x2 display.
int count = 0; // Counter variable for tracking increments.
void setup() {
lcd.init(); // Initializes LCD display.
lcd.backlight(); // Turns on LCD backlight for visibility.
}
void loop() {
lcd.setCursor(0, 0); // Sets cursor to top-left corner.
lcd.print("Let's count"); // Displays "Hello World".
lcd.setCursor(0, 1); // Moves cursor to second line.
lcd.print("Count: "); // Displays "Count".
lcd.print(count); // Prints current count next to "Count".
delay(1000); // Pauses for one second.
count++; // Increments counter.
lcd.clear(); // Clears the display for next iteration.
}
Once you have finished the code, you can click Upload to see the results. You will see the first line of the I2C LCD1602 display “Let’s count!”, and the second line display “Count: ” followed by the count value.
Note
If your wiring is correct but no characters are displayed on the LCD, you can flip it over to the back and use a screwdriver to adjust the blue potentiometer. Rotate it until the characters are clearly visible and the background is relatively dim, which indicates a successful adjustment.
Finally, remember to save your code and tidy up your workspace.
Question
If you want to start displaying “Let’s count” at the second column of the first row on the I2C LCD1602, how should you modify the code?
Summary
In this lesson, we explored how to interact with the Arduino Uno R3 board using the I2C LCD1602 module. You are learned how to retrieve the I2C address and install the necessary libraries in the Arduino IDE to drive the LCD module. By writing and uploading code, You are successfully displayed characters and count data on the LCD. These steps not only deepened our understanding of the I2C communication protocol but also enhanced our ability to handle display devices.