Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use 16x2 I2C LCD: Examples, Pinouts, and Specs

Image of 16x2 I2C LCD
Cirkit Designer LogoDesign with 16x2 I2C LCD in Cirkit Designer

Introduction

The 16x2 I2C LCD (Manufacturer: FREENOVE, Part ID: GJD 1602IIC) is a liquid crystal display capable of displaying 16 characters per line across 2 lines. It utilizes the I2C (Inter-Integrated Circuit) communication protocol, which significantly reduces the number of pins required for interfacing with microcontrollers. This makes it an ideal choice for projects where pin availability is limited.

Explore Projects Built with 16x2 I2C LCD

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
I2C LCD Display Module with Power Supply Interface
Image of J8 +j22 lcd closeup: A project utilizing 16x2 I2C LCD in a practical application
This circuit interfaces a 20x4 I2C LCD display with a power source and an I2C communication bus. The LCD is powered by a 4.2V supply from a connector and communicates via I2C through another connector, which provides the SCL and SDA lines as well as ground.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Leonardo Controlled LCD Display with I2C Interface
Image of ert: A project utilizing 16x2 I2C LCD in a practical application
This circuit connects an Arduino Leonardo microcontroller to a 16x2 LCD display via an LCM1602 IIC interface module, enabling the display of text on the LCD. The Arduino is programmed to display the messages 'TEST LCD i2C' and 'KelasRobot.com' on the LCD. The IIC module facilitates communication between the Arduino and the LCD using the I2C protocol, simplifying the wiring and pin usage.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Mega 2560 I2C LCD Display Interface
Image of project 3: A project utilizing 16x2 I2C LCD in a practical application
This circuit consists of an Arduino Mega 2560 microcontroller connected to a 16x2 I2C LCD screen. The LCD screen is powered by the Arduino's 5V and GND pins, and communicates with the Arduino via the I2C protocol using the SCL and SDA pins.
Cirkit Designer LogoOpen Project in Cirkit Designer
A-Star 32U4 Mini and I2C LCD Screen Battery-Powered Display
Image of lcd disolay: A project utilizing 16x2 I2C LCD in a practical application
This circuit features an A-Star 32U4 Mini microcontroller connected to a 16x2 I2C LCD screen. The microcontroller provides power and ground to the LCD, and communicates with it via the I2C protocol using the A4 (SDA) and A5 (SCL) pins.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with 16x2 I2C LCD

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of J8 +j22 lcd closeup: A project utilizing 16x2 I2C LCD in a practical application
I2C LCD Display Module with Power Supply Interface
This circuit interfaces a 20x4 I2C LCD display with a power source and an I2C communication bus. The LCD is powered by a 4.2V supply from a connector and communicates via I2C through another connector, which provides the SCL and SDA lines as well as ground.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of ert: A project utilizing 16x2 I2C LCD in a practical application
Arduino Leonardo Controlled LCD Display with I2C Interface
This circuit connects an Arduino Leonardo microcontroller to a 16x2 LCD display via an LCM1602 IIC interface module, enabling the display of text on the LCD. The Arduino is programmed to display the messages 'TEST LCD i2C' and 'KelasRobot.com' on the LCD. The IIC module facilitates communication between the Arduino and the LCD using the I2C protocol, simplifying the wiring and pin usage.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of project 3: A project utilizing 16x2 I2C LCD in a practical application
Arduino Mega 2560 I2C LCD Display Interface
This circuit consists of an Arduino Mega 2560 microcontroller connected to a 16x2 I2C LCD screen. The LCD screen is powered by the Arduino's 5V and GND pins, and communicates with the Arduino via the I2C protocol using the SCL and SDA pins.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of lcd disolay: A project utilizing 16x2 I2C LCD in a practical application
A-Star 32U4 Mini and I2C LCD Screen Battery-Powered Display
This circuit features an A-Star 32U4 Mini microcontroller connected to a 16x2 I2C LCD screen. The microcontroller provides power and ground to the LCD, and communicates with it via the I2C protocol using the A4 (SDA) and A5 (SCL) pins.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Displaying sensor readings in real-time
  • User interfaces for embedded systems
  • Menu systems for microcontroller-based projects
  • Educational and prototyping purposes
  • IoT devices requiring simple text output

Technical Specifications

The following table outlines the key technical details of the 16x2 I2C LCD:

Parameter Specification
Manufacturer FREENOVE
Part ID GJD 1602IIC
Display Type 16x2 Character LCD
Communication Protocol I2C (Inter-Integrated Circuit)
Operating Voltage 5V DC
Backlight LED Backlight (controllable)
Contrast Adjustment Potentiometer on the I2C module
I2C Address (Default) 0x27 (modifiable via solder pads)
Operating Temperature -20°C to 70°C
Dimensions 80mm x 36mm x 12mm

Pin Configuration and Descriptions

The 16x2 I2C LCD has a 4-pin interface for I2C communication. The pin configuration is as follows:

Pin Name Description
1 GND Ground connection
2 VCC Power supply (5V DC)
3 SDA Serial Data Line for I2C communication
4 SCL Serial Clock Line for I2C communication

Usage Instructions

How to Use the Component in a Circuit

  1. Connect the Pins:

    • Connect the GND pin to the ground of your microcontroller.
    • Connect the VCC pin to the 5V power supply of your microcontroller.
    • Connect the SDA pin to the I2C data pin of your microcontroller (e.g., A4 on Arduino UNO).
    • Connect the SCL pin to the I2C clock pin of your microcontroller (e.g., A5 on Arduino UNO).
  2. Install Required Libraries:

    • For Arduino, install the LiquidCrystal_I2C library via the Arduino IDE Library Manager.
  3. Write and Upload Code:

    • Use the example code below to initialize and display text on the LCD.

Example Code for Arduino UNO

#include <Wire.h>                // Include the Wire library for I2C communication
#include <LiquidCrystal_I2C.h>   // Include the LiquidCrystal_I2C library

// Initialize the LCD with I2C address 0x27 and dimensions 16x2
LiquidCrystal_I2C lcd(0x27, 16, 2);

void setup() {
  lcd.begin();                   // Initialize the LCD
  lcd.backlight();               // Turn on the backlight
  lcd.setCursor(0, 0);           // Set cursor to the first column, first row
  lcd.print("Hello, World!");    // Print text on the first row
  lcd.setCursor(0, 1);           // Set cursor to the first column, second row
  lcd.print("16x2 I2C LCD");     // Print text on the second row
}

void loop() {
  // No actions in the loop for this example
}

Important Considerations and Best Practices

  • Ensure the I2C address (default: 0x27) matches the address of your LCD module. If not, check the module's documentation or adjust the solder pads to modify the address.
  • Use a pull-up resistor (typically 4.7kΩ) on the SDA and SCL lines if your microcontroller does not have internal pull-ups enabled.
  • Avoid exceeding the operating voltage (5V DC) to prevent damage to the module.
  • Adjust the contrast using the potentiometer on the I2C module if the text is not visible or too faint.

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Text Displayed on the LCD:

    • Verify all connections are secure and correct.
    • Check the I2C address of the module and ensure it matches the address in your code.
    • Adjust the contrast potentiometer on the I2C module.
  2. Backlight Not Turning On:

    • Ensure the lcd.backlight() function is called in your code.
    • Check the power supply voltage (5V DC) and connections.
  3. Garbled or Incorrect Characters:

    • Ensure the correct library (LiquidCrystal_I2C) is installed and used.
    • Verify the I2C address and ensure no other devices on the I2C bus conflict with the LCD.
  4. I2C Communication Errors:

    • Check the SDA and SCL connections for loose wires or poor soldering.
    • Use pull-up resistors on the SDA and SCL lines if necessary.

FAQs

Q: Can I use this LCD with a 3.3V microcontroller?
A: The module is designed for 5V operation. If using a 3.3V microcontroller, a logic level shifter is required for the SDA and SCL lines.

Q: How do I change the I2C address of the LCD?
A: The I2C address can be modified by adjusting the solder pads on the back of the I2C module. Refer to the module's datasheet for details.

Q: Can I turn off the backlight programmatically?
A: Yes, use the lcd.noBacklight() function to turn off the backlight.

Q: What is the maximum cable length for I2C communication?
A: The maximum length depends on the pull-up resistor values and the I2C clock speed. For standard setups, keep the cable length under 1 meter to ensure reliable communication.

This concludes the documentation for the 16x2 I2C LCD.