rick0x00 / ESP32LCD16X24b

Functional way to connect ESP32 to 16x2 LCD without I2C module, using 4-bit communication

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ESP32 LCD 16X2 4bits

Functional way to connect ESP32 to 16x2 LCD without I2C module, using 4-bit communication.

Here is where the code stretch you should pay attention to as well as make the correct connections in board.

const int rs = 23, rw = 4, en = 22, d4 = 5, d5 = 18, d6 = 19, d7 = 21;
LiquidCrystal lcd(rs, rw, en, d4, d5, d6, d7);

ESP32LCD16X44b_3D

ESP32LCD16X44bPCB-CAD

ESP32LCD16X44b_SCHEMATIC

About

Functional way to connect ESP32 to 16x2 LCD without I2C module, using 4-bit communication

License:MIT License


Languages

Language:C++ 75.1%Language:HTML 24.9%