I2C LCD1602(Blue)

From Elecrow
Revision as of 12:17, 22 August 2019 by Admin (talk | contribs) (Created page with "== Introduction == An LCD display that can display a max of 16x2 charactors. with the help of the I2C bus convertor and related libraries, you can easily use this module with...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction

An LCD display that can display a max of 16x2 charactors. with the help of the I2C bus convertor and related libraries, you can easily use this module with just 2 wires.
Model: DLC11602A

I2C LCD1602(Blue)1.jpg I2C LCD1602(Blue)3.jpg

Specification

  • LCD Display Mode: STN, Positive, Transflective
  • Display Color: ?Blue
  • Driving Method : 1/16 duty, 1/5 bias
  • Control Method: I2C
  • Viewing Angle: 6H

Application

  • Electronic equipment

Interface

Connect the I2C LCD1602 to the I2C port of Arduino(SDA<->A4 and SCL<->A5) and power this module with 5V voltage as belows:
I2c lcd1602.png

Usage

"Hellow world" with this module

After connecting the hardware, Downloadthe "Hello World" demo to your Arduino board. you can refer to Here to learn how to download the sketchs.
500px

Display the customer chars

You can also make the LCD to display your own chars or logos as you like, you need to constrat your own chars in your program, as the method in the "CustomChars" demo. also, it would be easy for you to make the LCD display what you input with the serial port, just as the "SerialDisplay" demo, you can sent what you want to display with the serial monitor in the Arduino IDE, please note that you should set the baudrate to 9600. for me, i want the I2C LCD 1602 to show "good day".
1602customerchars.jpg1602Serialdisplay.jpg

Backlight control and Contrast control

The Backlight can be controlled by the firmware or the on-board jumper:
Firmware:

 lcd.backlight();// light on the backlight;
 lcd.noBacklight();//light off the backligth;


Hardware:
There is a jumper on the board, if you take away this jumper , the backlight will aways be off:
1602jumper.jpg
You can control the LCD contrast by adjust the on-board potentiometer :
1602Contrast.jpg

For the usagage of other functions, pleae refer to the "LiquidCrystal_I2C.h" in the sourcecode of I2C LCD library.

Resource

File:I2C LCD Library.zip