element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Arduino I2C display
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 22 replies
  • Answers 1 answer
  • Subscribers 420 subscribers
  • Views 5537 views
  • Users 0 members are here
  • lcd
  • i2c
  • help
  • 20x4
  • arduino
  • module
Related

Arduino I2C display

danyboy
danyboy over 13 years ago

Hello:

I'm a hobbist electronics student and I have been experimenting with arduino for a while. I have worked with character and graphic LCD without any serious problems. I wanted to save wires, so I bought an I2C LCD 20x4 module from ebay. However I have not been able to get it working. I have downloaded the most recent I2C library and I have followed all the instructions but my LCD simply won't work. Instead it lights up like this. The supplier told me that the address of my display is 0x27, but when I use this address nothing happens. After trying different addresses, I dicovered that if I use 0x20 as an address some characters blink randomly with the example code running. the chip on the board is the pcf8574 from Phillips.

Attachments:
image
image
  • Sign in to reply
  • Cancel

Top Replies

  • Workshopshed
    Workshopshed over 13 years ago in reply to billabott +2
    The problem seems to be that pcf8574 is just an I/O expander so it can be wired up differently. The device I chose luckily had a ST7032 LCD controller chip so I did not have that issue but I still had…
  • mcb1
    mcb1 over 13 years ago in reply to danyboy +1
    Daniel You might need to clarify some items here. 1. Your sketch allocates the backlight on D13, but your display is a I2C version and the backlight pins are LCD 16 and 15 (as shown on top left of your…
  • billabott
    billabott over 13 years ago +1 suggested
    #include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd2 = LiquidCrystal_I2C(0x27,20,4); // Set the LCD address, # columns and # rows // Create a set of new characters const uint8_t charBitmap…
Parents
  • billabott
    0 billabott over 13 years ago

     

     

    #include <Wire.h>

     

    #include <LiquidCrystal_I2C.h>

     

    LiquidCrystal_I2C lcd2 = LiquidCrystal_I2C(0x27,20,4);  // Set the LCD address, # columns and # rows

     

    // Create a set of new characters

    const uint8_t charBitmap[][8] = {

       { 0xc, 0x12, 0x12, 0xc, 0, 0, 0, 0 },

       { 0x6, 0x9, 0x9, 0x6, 0, 0, 0, 0 },

       { 0x0, 0x6, 0x9, 0x9, 0x6, 0, 0, 0x0 },

       { 0x0, 0xc, 0x12, 0x12, 0xc, 0, 0, 0x0 },

       { 0x0, 0x0, 0xc, 0x12, 0x12, 0xc, 0, 0x0 },

       { 0x0, 0x0, 0x6, 0x9, 0x9, 0x6, 0, 0x0 },

       { 0x0, 0x0, 0x0, 0x6, 0x9, 0x9, 0x6, 0x0 },

       { 0x0, 0x0, 0x0, 0xc, 0x12, 0x12, 0xc, 0x0 }

     

    };

     

    void setup()

    {

       int charBitmapSize = (sizeof(charBitmap ) / sizeof (charBitmap[0]));

       lcd2.backlight();               // Switch on the backlight

       // lcd2.begin(20,4);               // initialize the lcd

       for ( int i = 0; i < charBitmapSize; i++ )

       {

         lcd2.createChar ( i, (uint8_t *)charBitmap[i] );

       }

     

      lcd2.home ();                   // go home

      lcd2.print("Hello, ARDUINO ");

      lcd2.setCursor ( 0, 1 );        // go to the next line

      lcd2.print (" FORUM - fm   ");

      delay ( 1000 );

    }

     

    void loop()

    {

       lcd2.home ();

       // Do a little animation by writing to the same location

       for ( int i = 0; i < 2; i++ )

       {

          for ( int j = 0; j < 16; j++ )

          {

             lcd2.print (char(random(7)));

          }

          lcd2.setCursor ( 0, 1 );

       }

       delay (200);

    }


    This compiles clean:

    Got a clean compile with this sketch.  image

     

    and this one:

    #include <Wire.h>

    #include <LiquidCrystal_I2C.h>

     

    LiquidCrystal_I2C lcd=LiquidCrystal_I2C(0x27,20,4); //set the LCD address to 0x27 for a 16 chars and 2 line display

     

     

    void setup()

    {

    lcd.init();

    lcd.backlight();

    lcd.setCursor(0, 0);

    lcd.print("b2cqshop");

    lcd.setCursor(0, 1);

    lcd.print("Voltage: ");

    lcd.setCursor(13, 1);

    lcd.print("V");

    }

    void loop()

    {

    int val;

    float temp;

    val=analogRead(0);

    temp=val/4.092;

    val=(int)temp;//

    lcd.setCursor(9, 1);

    lcd.print(0x30);

    lcd.print(0x30+(val%100)/10);

    lcd.print('.');

    lcd.print(0x30+val%10);

    delay(100);

    }

     

    So please report back if it actually works with the I2C LCD.  thanks.  And give me my points.  I earned them tonight.


    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • mcb1
    0 mcb1 over 13 years ago in reply to billabott

    I should have read all the original post.

    I've edited the initialisation line to reflect the 20x4 display.

     

    Cheers

    mark

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • mcb1
    0 mcb1 over 13 years ago in reply to billabott

    I should have read all the original post.

    I've edited the initialisation line to reflect the 20x4 display.

     

    Cheers

    mark

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube