Character LCD 4×20

Character LCD 4×20
1. Display Format: 4 Rows x 20 Characters
2. Interface Type: Parallel (HD44780 Compatible)
3. Backlight Color: Blue / Green
4. Operating Voltage: 5V
5. Operating Temperature: 0°C to +50°C

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

250,00 EGP

11 People watching this product now!

Payment Methods:

Description

This Character LCD 4×20 is a parallel-interface display showing 4 rows of 20 characters each, built around an HD44780-compatible controller IC for straightforward integration with Arduino and other embedded systems.

It runs on 5V and includes an LED backlight available in blue or green, with black character color against the backlit background for good contrast and a wide viewing angle.

Rated for operation across 0°C to +50°C, this display suits instrument panels, embedded system status readouts, and general Arduino-based projects needing multi-line text output.

Features:

  1. HD44780-compatible parallel interface
  2. 4 rows x 20 characters display format
  3. LED backlight: blue or green
  4. Black character color, wide viewing angle
  5. Operating voltage: 5V
  6. Operating temperature: 0°C to +50°C
  7. Suited for Arduino and embedded system projects
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
LCD 4x20RS/EN/D4-D7/VOboard digital pins / board digital pins / 10k contrast pot wiper
📟
Character LCD 4x20
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Character LCD 4x20 - Arduino Uno
Character LCD 4x20 - Arduino Nano
Character LCD 4x20 - Arduino Mega
Character LCD 4x20 - ESP32
Character LCD 4x20 - ESP8266
Character LCD 4x20 - STM32
Character LCD 4x20 - Raspberry Pi Pico
📄 File: character_lcd_4x20_-_arduino_uno.inoArduino Uno
435 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS=12, EN=11, D4-D7=5,4,3,2 on Arduino Uno. Also wire R/W to GND, and a 10k pot between VCC/GND with its wiper to VO for contrast.
6#include <LiquidCrystal.h>
7
8LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
9
10void setup() {
11 lcd.begin(20, 4);
12 lcd.print("Hello, Ekostra!");
13}
14
15void loop() {
16 lcd.setCursor(0, 1);
17 lcd.print(millis() / 1000);
18 lcd.print(" sec");
19 delay(500);
20}
📄 File: character_lcd_4x20_-_arduino_nano.inoArduino Nano
436 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS=12, EN=11, D4-D7=5,4,3,2 on Arduino Nano. Also wire R/W to GND, and a 10k pot between VCC/GND with its wiper to VO for contrast.
6#include <LiquidCrystal.h>
7
8LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
9
10void setup() {
11 lcd.begin(20, 4);
12 lcd.print("Hello, Ekostra!");
13}
14
15void loop() {
16 lcd.setCursor(0, 1);
17 lcd.print(millis() / 1000);
18 lcd.print(" sec");
19 delay(500);
20}
📄 File: character_lcd_4x20_-_arduino_mega.inoArduino Mega
436 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS=12, EN=11, D4-D7=5,4,3,2 on Arduino Mega. Also wire R/W to GND, and a 10k pot between VCC/GND with its wiper to VO for contrast.
6#include <LiquidCrystal.h>
7
8LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
9
10void setup() {
11 lcd.begin(20, 4);
12 lcd.print("Hello, Ekostra!");
13}
14
15void loop() {
16 lcd.setCursor(0, 1);
17 lcd.print(millis() / 1000);
18 lcd.print(" sec");
19 delay(500);
20}
📄 File: character_lcd_4x20_-_esp32.inoESP32
437 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS=13, EN=12, D4-D7=14,27,26,25 on ESP32. Also wire R/W to GND, and a 10k pot between VCC/GND with its wiper to VO for contrast.
6#include <LiquidCrystal.h>
7
8LiquidCrystal lcd(13, 12, 14, 27, 26, 25);
9
10void setup() {
11 lcd.begin(20, 4);
12 lcd.print("Hello, Ekostra!");
13}
14
15void loop() {
16 lcd.setCursor(0, 1);
17 lcd.print(millis() / 1000);
18 lcd.print(" sec");
19 delay(500);
20}
📄 File: character_lcd_4x20_-_esp8266.inoESP8266
439 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS=D0, EN=D1, D4-D7=D2,D3,D4,D5 on ESP8266. Also wire R/W to GND, and a 10k pot between VCC/GND with its wiper to VO for contrast.
6#include <LiquidCrystal.h>
7
8LiquidCrystal lcd(D0, D1, D2, D3, D4, D5);
9
10void setup() {
11 lcd.begin(20, 4);
12 lcd.print("Hello, Ekostra!");
13}
14
15void loop() {
16 lcd.setCursor(0, 1);
17 lcd.print(millis() / 1000);
18 lcd.print(" sec");
19 delay(500);
20}
📄 File: character_lcd_4x20_-_stm32.inoSTM32
449 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS=PB0, EN=PB1, D4-D7=PB2,PB3,PB4,PB5 on STM32. Also wire R/W to GND, and a 10k pot between VCC/GND with its wiper to VO for contrast.
6#include <LiquidCrystal.h>
7
8LiquidCrystal lcd(PB0, PB1, PB2, PB3, PB4, PB5);
9
10void setup() {
11 lcd.begin(20, 4);
12 lcd.print("Hello, Ekostra!");
13}
14
15void loop() {
16 lcd.setCursor(0, 1);
17 lcd.print(millis() / 1000);
18 lcd.print(" sec");
19 delay(500);
20}
📄 File: character_lcd_4x20_-_raspberry_pi_pico.inoRaspberry Pi Pico
449 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS=10, EN=11, D4-D7=12,13,14,15 on Raspberry Pi Pico. Also wire R/W to GND, and a 10k pot between VCC/GND with its wiper to VO for contrast.
6#include <LiquidCrystal.h>
7
8LiquidCrystal lcd(10, 11, 12, 13, 14, 15);
9
10void setup() {
11 lcd.begin(20, 4);
12 lcd.print("Hello, Ekostra!");
13}
14
15void loop() {
16 lcd.setCursor(0, 1);
17 lcd.print(millis() / 1000);
18 lcd.print(" sec");
19 delay(500);
20}
Parallel-interface 20x4 character LCD.

نظرة عامة ومواصفات المنتج — بالعربية

Character LCD 4×20 متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Display Modules، بسعر 250,00 EGP. كود المنتج لدينا: EK1450. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Display Type: Character LCD
  • Display Format: 4 Rows x 20 Characters
  • Backlight: LED Backlight
  • Interface Type: Parallel (HD44780 Compatible)
  • Operating Voltage: 5V
  • Character Color: Black
  • Backlight Color: Blue / Green
  • Viewing Area: Wide Viewing Angle

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Display Modules في إكوسترا.

Specification

Specification

WeightWeight0,09 g
Dimensions9,8 × 6 × 1,4 cm
Display TypeCharacter LCD
Display Format4 Rows x 20 Characters
BacklightLED Backlight
Interface TypeParallel (HD44780 Compatible)
Operating Voltage5V
Character ColorBlack
Backlight ColorBlue, Green
Viewing AreaWide Viewing Angle
Controller ICHD44780 or Compatible
Operating Temperature0°C to +50°C

Customer Reviews