Deliver to SINGAPORE
IFor best experience Get the App
📊 Elevate Your Projects with Clarity and Style!
The AEAC IIC/I2C/TWI Serial 2004 16x2 LCD Module Shield is designed for seamless integration with Arduino UNO and MEGA R3 boards. Featuring a compact size of 60mm x 99mm, it operates at a supply voltage of 5V and utilizes the I2C interface for efficient communication, making it perfect for a variety of DIY electronics projects.
T**S
Works fine and construction seemed good and pinouts were labeled
Had no problem getting this running, although I did knock off 1 star as it comes with no documentation, but there was enough info available at various websites. Works fine and construction seemed good and pinouts were labeled.Only requires 4 wires:I ran GND to GND on the Anduino and VCC to 5v. SDA to A5 on the Anduino and SDL to A4.Sample code:#include <wire.h>#include <liquidCrystal_I2c.h>:LiquidCrystal_I2C lcd(0x27, 16, 2)setup() {lcd.init();lcd.backlight():lcd.setCursor(0,0);lcd.print("Hello World");}