SunFounder IIC I2C TWI Serial 2004 20x4 LCD Module Shield Compatible with Arduino R3 MEGA (IIC 2004)
Thumbnail 1Thumbnail 2Thumbnail 3Thumbnail 4Thumbnail 5Thumbnail 6Thumbnail 7

SunFounder IIC I2C TWI Serial 2004 20x4 LCD Module Shield Compatible with Arduino R3 MEGA (IIC 2004)

4.5/5
Product ID: 33978284
Secure Transaction
IIC/I2C interface
📏20x4 char display
🔌Compatible with Arduino

Description

💡 Illuminate Your Ideas with the SunFounder LCD!

  • BACKLIGHT CONTROL - Unplug the jumper cap for a backlight-free experience.
  • CUSTOMIZABLE CONTRAST - Easily adjust the display contrast with a built-in potentiometer.
  • LIGHTWEIGHT COMPACT - Weighing only 3.05 ounces, it's perfect for portable projects.
  • EFFORTLESS CONNECTIVITY - Utilize just two I/O ports for seamless integration.
  • TRANSFORM YOUR PROJECTS - Elevate your Arduino creations with vibrant displays!

The SunFounder IIC I2C TWI Serial 2004 20x4 LCD Module Shield is a versatile display solution compatible with Arduino R3 and MEGA boards. It features a 20x4 character display, adjustable contrast, and a lightweight design, making it ideal for enhancing your DIY electronics projects.

Small manufacture image 1Small manufacture image 2Small manufacture image 3Small manufacture image 4Small manufacture image 5

Specifications

Standing screen display size3 Inches
BrandSunFounder
Item model number8541582407
Item Weight3.05 ounces
Product Dimensions7.5 x 5 x 0.2 inches
Item Dimensions LxWxH7.5 x 5 x 0.2 inches
ColorLCD2004 & I2C (1Pack)
Voltage5 Volts
ManufacturerSunFounder
ASINB01GPUMP9C
Country of OriginChina
Is Discontinued By ManufacturerNo
Date First AvailableJune 7, 2016

Have a Question? See What Others Asked

It it possible to change the address of the lcd to have multiple lcd on the same bus?
Has anyone run this display on 3.3 volts successfully? I'd like to use it on an 8266-12E to display the ip address.
Do these come with an I2C backpack? I just ordered some of these and they came with no backpack in the package.
Does this work for the old raspberry pis that have a 26 pin gpio?

Reviews

4.5

All from verified purchases

K**L

Used with Cypress PS0C 5LP no problem

Despite the Arduino focused listing title, the display is Hitachi compatible using the PCF8574T (in my unit) I2C converter backpack that can work on other processor lines easily. I needed to hook it up to a Cypress PSoc 5LP eval board (CY8CKIT-059). Cypress provides many code examples and auto-generates APIs for library parts like parallel and serial graphics and text displays. The library worked fine with the parallel Hitachi displays including this 4x20. It did not work with this backpack and the I2C library supporting NXP PCF2119x commands. The solution was to find and use a community library (V2.1 as of this date). It also adds a few new functions to integrate position and string and char printing. The default address (no jumpers installed on A0-A2) is 0x27 (7bit), or 0x4E (8bit). The non T version of the PCF8574 may be 3F default. You need to pay attention to the header or library component address entry for which form of address, 7 or 8 bit, is required to be entered as the protocol shifts the address 1 bit position. It is also helpful to run a small routine to scan the I2C bus to see what shows up if yo have any difficulty. Check for the community code at the cypress community website, thread number 11727. The backpack is a common part and you can remove it and use it on other displays, in my case a 2x16 Hitachi compatible display. For a programmable backlight level I cut the trace on the 5V side (top side of board) of the backlight 2 pin header and wired a jumper from the now open pin up to pin 16 on the backpack. My PWM wire supplies 5V and switched ground on a 2 pin 0.100" center plug. I changed it on the backpack so it would work on any display it ever got moved to since not all displays have easy onboard backlight connections or configuration jumper pads.

T**R

A device that works as expected, easy to use, lots of instructions and Arduino library online.

Great product. Go to the website, check out the video, downloaded the library, hooked it up to my generic Arduino using their guides. Before I even loaded the sketch the device sprung to life when the backlight was powered up displaying a default message. I could immediately see the LCDs were displaying well.I loaded the zip library from the website, loaded the sample sketch and ran it and bingo I saw their help world message. Updated it and Bam I saw my message. Googled how to create and display a custom character and did so. Vary happy with the purchase.If paying the price of a side of fries at your favorite fast food place doesn't phase you then I highly recommend spending a couple extra bucks to buy from these guys, and know you are getting something you can enjoy right away.I haven't tried powering this from a device running 3.3 volts but my 5 volt Arduino clone works great with this.

A**N

Great Product, Great Price, Fast Delivery!

Works great! Thanks

A**N

works as intended and of good quality

works as intended and of good quality

R**M

Good for price.

The media could not be loaded. Easy to set up, and works with the standard "LiquidCrystal_I2C" library.Contrast adjustable as described.2 cons:1) Red glow always from the top right and bottom left corners. Not bright, but there.2) A long message line continues from line 0 to line 2, ie. it skips a line, then goes back to line 1, and then to line 3. Not sure if this is fault of the hardware, or the library driver.To note - if I place the cursor on a specific line, it prints the specified message there OK.See code below and video.#include <LiquidCrystal_I2C.h>#include <wire.h>// initialize the library with the numbers of the interface pinsLiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 20 chars and 4 line displaychar message[] = "This is some long message that will end up scrolling on Line0 only";int previous = 0;int pos = 0;void setup(){lcd.init(); //initialize the lcdlcd.backlight(); //open the backlight// Print a message to the LCD.lcd.print(message);delay(5000);lcd.clear();}void printLine(int refreshSeconds){//Check if the current second since restart is a mod of refresh seconds,//if it is then update the display , it must also not equal the previously//stored value to prevent duplicate refreshesif((millis()/500) % refreshSeconds == 0 && previous != (millis()/500)){previous = (millis()/500);//Store the current time we entered for comparison on the next cyclelcd.setCursor(0, 0);//Set our draw position , set second param to 0 to use the top linechar lcdTop[20];//Create a char array to store the text for the lineint copySize = 20; // What is the size of our screen , this could probably be moved outside the loop but its more dynamic like thisif(strlen(message) < 20){//if the message is bigger than the current buffer use its length instead;copySize = strlen(message);}//Store the current position temporarily and invert its sign if its negative since we are going in reverseint tempPos = pos;if(tempPos < 0){tempPos = -(tempPos);}//Build the lcd text by copying the required text out of our template message variablememcpy(&lcdTop[0],&message[tempPos],copySize);lcd.print(lcdTop);//Print it from position 0//Increase the current position and check if the position + 20 (screen size) would be larger than the message length , if it is go in reverse by inverting the sign.pos += 1;if(pos +20 >= strlen(message)){pos = -(pos);}}}void loop(){printLine(1); // Original program linelcd.setCursor(0,1);lcd.print("This is Line1 msg");delay(250);lcd.setCursor(0,2);lcd.print("This is Line2 msg");delay(250);lcd.setCursor(0,3);lcd.print("This is Line3 msg");delay(250);lcd.clear();}

Common Questions

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Anjali K.

The product quality is outstanding. Exactly what I needed for my work.

1 month ago

Fatima A.

Best international shipping I've ever tried. Worth every penny!

3 days ago

Shop Global, Save with Desertcart
Value for Money
Competitive prices on a vast range of products
Shop Globally
Serving over 300 million shoppers across more than 200 countries
Enhanced Protection
Trusted payment options loved by worldwide shoppers
Customer Assurance
Trusted payment options loved by worldwide shoppers.
Desertcart App
Shop on the go, anytime, anywhere.
VT5996

Duties & taxes incl.

Vanuatustore
1
Free Returns

30 daysfor PRO membership users

15 dayswithout membership

Secure Transaction

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Vikram D.

The MOLLE sheath is of exceptional quality. Very happy with my purchase.

2 weeks ago

Zainab N.

Fantastic and great service. Shipping was faster than expected.

1 week ago

Sunfounder Iic I2c Twi Serial 2004 20x4 Lcd Module Shield | Desertcart Vanuatu