LCD2004 20×4 Blue LCD Display

Display provides a 20 character x 4 line LCD with parallel interface for control by an MCU....
Vendor: Keszoox
$6.95
$10.95
$6.95

Shipping

The shipping fee depends on your address

Standard: 9-15 business days,fee is down to $3.99

Express: 4-7 business days,fee is down to $5.99

Support Customization

WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.

If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.

Built And process your order

We make into production usually Within 1 - 3 Bussiness Days.

Expect customization orders.
LCD2004 20×4 Blue LCD Display

LCD2004 20×4 Blue LCD Display

$10.95 $6.95

LCD2004 20×4 Blue LCD Display

$10.95 $6.95

Display provides a 20 character x 4 line LCD with parallel interface for control by an MCU.

DESCRIPTION

The LCD2004 20×4 Blue LCD Display provides a 20 character x 4 line LCD with parallel interface for control by a uC.

PACKAGE INCLUDES:

  • LCD2004 20×4 Blue LCD Display
  • 1 x 16 Male header strip

KEY FEATURES OF LCD2004 20×4 BLUE LCD DISPLAY:

  • 20 character x 4 line Blue LCD
  • 4-bit and 8-bit parallel interface
  • 5V operation

These displays are straightforward to use and are a great way to provide a user interface on many projects where you need more info than simple LED indicators or 7-Segment displays can provide since these are full alphanumeric displays with 4 lines of 20 characters each for a total of 80 characters which is a fair amount of info.  For an interactive display, pairing this type of display with a rotary encoder to navigate and select menu items on the display can provide a very nice user interface.

LCD Display

The display is composed of a 20 character x 4 line LCD display with a blue backlight and white characters.  Each of the characters are composed of a 5 x 8 dot matrix for good character representation.  Custom characters can be defined and used with the display.

The backlight has a VO (Display Contrast) input for connecting a potentiometer for adjustment of the contrast of the display for best viewing.  The potentiometer can be somewhere in the 10K-50K range and should connect between 5V and ground.  The wiper output of the potentiometer feeds the VO pin with a variable voltage that sets the contrast.  If this is not adjusted correctly the display may not show any characters or solid blocks may be displayed.

The backlight is powered off the A (Anode) and K (Cathode) pins.  Normally 5V is applied to ‘A’ and ground to ‘K’.  The backlight includes a 51 ohm current limiting resistor, so an external resistor is not required.

The backlight can go down to about 3.2V before it goes out.  It can be operated off the 3.3V line if a lower brightness is desired for the application.  The backlight can be driven by a logic pin using a transistor if PWM brightness or ON/OFF control is desired

Parallel Interface

This display incorporates an parallel interface that can operate using an 8-bit (byte) mode or a 4-bit (nibble) mode.  8-bit mode uses data pins D0-D7 and 4-bit mode uses the upper data pins of D4-D7.

In practice, the 4-bit mode is normally used as it saves 4 pins on the MCU and maximizing communication speeds with the display are generally not a concern.  The LiquidCrystal.h library makes the difference between using the two modes transparent to the user.

If it is desirable to minimize the pins used on the MCU even further, check out the version with an I2C interface down below which uses only 2 pins plus power and ground.

Module Connections

Connection to the display is via a 16-pin header.

1 x 16 Header

  • VSS =        Connect to system ground.  This ground needs to be in common with the MCU
  • VDD =      Connect to 5V.  This can come from the MCU or be a separate power supply.
  • VO =          Display contrast.  Connect to approximately a 20K potentiometer between 5V and ground to adjust contrast of the display
  • RS =           Register Select.  Selects the command or data register.  A logic LOW = Command, HIGH = Data.
  • RW =        Read / Write.  The display is a write only device.  This pin is grounded to keep it in write mode at all times.
  • E =              Enable.  This pin enables writing to the display when active LOW
  • D0 – D7 = Data pins.  D0-D7 used for 8-bit mode.  D4-D7 used for 4-bit mode
  • A =              Backlight Anode.  Connects to 5V.
  • K =              Backlight Cathode.  Connects to ground

Assembling Module

The module ships with the male header strip loose.  This allows the header to be soldered to the top or bottom of the module depending on the planned use or wires can be used to make the connections.

For breadboard use, put the headers on the bottom.  Soldering is easiest if the header is first inserted into a solderless breadboard to hold it in position and keep it aligned during the soldering process.


OUR EVALUATION RESULTS:

These are good quality modules and should be in the parts bin of any hobbyist.  Because of the interactivity they provide, they are both fun to play with and useful for more serious projects.LCD2004 - In Operation

The software below uses the built-in Arduino “LiquidCrystal.h” library to show the functionality of the module.

Connections to the module are outlined in the program comments.  The MCU data lines used can be changed and redefined in the following line if needed.

// Define pin connections to Arduino (RS, Enable, D4, D5, D6, D7)
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);

A potentiometer is required between 5V and ground to feed the VO line to set the display contrast or else the text may not be visible.

LCD2004 20×4 LCD Display Example Program

/*
   20x4 4-bit data bus LCD Test

   Initialize the LCD and print a simple message to it.
   Then increment a counter on the 4th line every second.
   This setup uses a 4-bit bus to conserve number of MCU pins
   Connect VDD to 5V and VSS to ground on the Arduino.
   Connect RW to Ground
   Connect RS to D8, Enable to D9, D4 to D4, D5 to D5, D6 to D6, D7 to D7
   Connect A to 5V and K to Ground
   Connect a potentiometer to OV to adjust contrast of the display
*/

#include <LiquidCrystal.h>// include the library code

// Define pin connections to Arduino (RS, Enable, D4, D5, D6, D7)
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);

long count = 0;
//===============================================================================
//  Initialization
//===============================================================================
void setup()
{
  lcd.begin(20, 4);  // Initialize and define the LCD's number of cols and rows:

  // Print fixed info on the display one time
  lcd.setCursor(6, 0); // set the cursor to Col 7, Line 1
  lcd.print("LCD2004");
  lcd.setCursor(4, 1); // set cursor to Col 5, Line 2
  lcd.print("Hello world!");
  lcd.setCursor(2, 2);
  lcd.print("20 chars x 4 rows");
  lcd.setCursor(0, 3);
  lcd.print("Counter: ");
}
//===============================================================================
//  Main
//===============================================================================
void loop()
{
  // Simply count up once per second until max size of 'long' type is reached,
  // then start over

  lcd.setCursor(9, 3);       // Set cursor to count location
  lcd.print(count);           // Print new count
  if (count > 2147483646) {   // Handle any roll-over
    count=0;
    lcd.print("          ");  // clear old count
    lcd.print(count);
  }
  count++;                    // increment count
  delay (1000);
}

BEFORE THEY ARE SHIPPED, THESE MODULES ARE:

  • Inspected
  • Functionality tested
  • Repackaged in high quality resealable ESD bag for safe storage.

Notes:  

  1. The back of the board contains the electronics, so some care should be used to avoid possible shorting if placed on a metallic surface.

TECHNICAL SPECIFICATIONS

Display Characters  20 characters x 4 lines
 Backlight Color  Blue
 Operating Ratings DC Power Input 5V nominal  (5.5V max)
Operating Current (Total) 40mA (typical)
Operating Current (Backlight Only) 30mA (typical)
Dimensions
Display Size (PCB) 99 x 60mm (3.9″ x 2.36″)
Display Height w/ PCB 12mm (0.47″)
Display Bezel 97 x 40mm (3.82 x 1.58″)

WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.

Contact us:
Support@keszoox.com
What we can help:
If you're looking for a wire or cable assembly, we can help.
What we need your help next:
Kindly contact us via email support@keszoox.com and send us the details fo your need, then we'll let you know how we can deliver the right solution.

Shipping Policy

All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.

Shipping Times

Standard: 9-15 business days. Express: 4-7 business days.

Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.

Tracking

All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.

Related Products

Recently Viewed Products