Serial LCD - I2C Backpack

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • This LCD backpack is built on port expander IC PCF8574T which converts the parallel interface of LCD to I2C interface.Only 2 wires SDA & SCL needed apart from Vcc,Gnd for communication with uC.
    Can be soldered on to 16 x 2 , 16 x 4 & 20 x 4 LCDs.
    Download Arduino Library & example code here :
    www.alselectro....

Комментарии • 79

  • @Eurus721
    @Eurus721 7 лет назад +3

    Just got to connecting a 1602 last night and never would have gotten it going without this covert well made video on pause between steps. Thank you sir

  • @magicdev2192
    @magicdev2192 6 лет назад

    Really Helpful! I tried almost every blog on the internet regarding this but only this one paid off!

  • @dimitrichelidze3269
    @dimitrichelidze3269 7 лет назад

    Thank you my friend...your video was the best tutorial I had seen. I was surprised when instead 0x27 address I found that my factory address was 0x3F...I put it in it place and my LCD alived...thanks again...you are doing great job...

  • @nehabhavsar6130
    @nehabhavsar6130 4 года назад

    you are always my saver sir.....i didnt know to find address of my module...using scanner code i found solution to my problem...thanku sir

  • @silviorossi5150
    @silviorossi5150 3 года назад +1

    Thank you for the tutorial. Greetings from Italy!

  • @budirahmani
    @budirahmani 4 года назад

    Yes, we need an I2C address scanner before use it. Nice job Sir.

  • @MatsK007
    @MatsK007 8 лет назад +11

    Greate video.
    But you should avoid placing the libraries under "Program files", they disapears when you upgrade Arduino.
    A better place is "Documents\Arduino\libraries", and to import it you can use the menu "Sketch | Include Library | Add .ZIP Library..." to install libraries in ZIP files.

    • @SaravananAL
      @SaravananAL  8 лет назад +4

      Yes that is always a good practice to import & install library.Thank you for the tip.

  • @RoyAndrews82
    @RoyAndrews82 7 лет назад

    Thanks so much for the helpful code to find the address.. I'm doing just fine now thanx to your video. Outputting tempature displayed on my new 20x4 Blue LCD, and controller an air conditioner with an n-Channel MOSFET and a SSR. BEAST MODE !!

  • @TorIvanBoine
    @TorIvanBoine 6 лет назад

    nice. awesome! I had a sketch for my display. but didn't get it to work. So I ran the I2Cscanner you provided. I found out that the 0x3F was wrong in my code. thanks!

  • @juanitoco7018
    @juanitoco7018 7 лет назад

    Thank you. Your link is particularly straight forward working.

  • @wolfgangboettcher3126
    @wolfgangboettcher3126 4 года назад +1

    Fehler 16x2 geht nicht bei mir alles logisch angeschlossen,mamamia wer soll das alles Wissen,werde Testen

  • @chuivan13
    @chuivan13 5 лет назад

    Extremely Useful! Thank you so much!

  • @NLDennis
    @NLDennis 7 лет назад +1

    Works fine, thank you!

  • @amikhimji
    @amikhimji 4 года назад

    Hi very good explanation thank you

  • @muratcanbarut64
    @muratcanbarut64 4 года назад

    Thank you so much great lesson Extremely Useful!

  • @danljohnston
    @danljohnston 7 лет назад

    Very helpful video, thanks for posting.

  • @electromesh9324
    @electromesh9324 7 лет назад

    Thanks. Everything was very clear

  • @iam.miikey
    @iam.miikey 7 лет назад +1

    Great tutorial, clear and simple!!!

  • @kolhatkarchinmay
    @kolhatkarchinmay 8 лет назад

    Nice video sir..Good explanation..

  • @tomg8817
    @tomg8817 7 лет назад

    Very helpful; thank you sir!

  • @abpccpba
    @abpccpba 6 лет назад

    Great presentation.

  • @Hansen4155
    @Hansen4155 8 лет назад +5

    helloworld:5: error: no matching function for call to 'LiquidCrystal_I2C::LiquidCrystal_I2C(int, int, int, int, int, int, int, int)'
    I have only been able to scan the IC, but i cannot compile, the error message is shown above.

    • @NoBreakz
      @NoBreakz 7 лет назад

      i got rid of the problem by liquidCrystal_I2C(0x3f,x,x) but i still cant get it to display a message..

    • @allaboutechnologie2165
      @allaboutechnologie2165 7 лет назад

      me too ,any solution ?

    • @TheRacow
      @TheRacow 6 лет назад

      Same problem here...

    • @monalisadas9805
      @monalisadas9805 6 лет назад

      same problem

    • @kengineer1379
      @kengineer1379 6 лет назад

      delete the old liquidcrystal library before placing the new lcd library

  • @laidman2007
    @laidman2007 5 лет назад

    This is excellent!

  • @Virus00000000000001
    @Virus00000000000001 6 лет назад

    u saved my life

  • @asimonp79
    @asimonp79 6 лет назад

    I followed the steps. - the address was 0x3F with all the resistors REMOVED.
    I had to modify the scetch to this one: and only after it was modified as I will show bellow- it worked. I had tried 2 LCDs
    #include
    #include
    // Address,EN,RW , RS, D4,D5,D6,D7,BackLight,BL_Polarity
    //LiquidCrystal_I2C lcd1(0x26, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
    LiquidCrystal_I2C lcd2(0x3F, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
    void setup()
    {
    //lcd1.begin(20,4);
    // lcd1.backlight();
    // lcd1.print("LCD 20 X 4 ");
    // lcd1.setCursor(0,1);
    // lcd1.print("I2C Address 0x26");
    // lcd1.setCursor(0,2);
    // lcd1.print("Line 3");
    // lcd1.setCursor(0,3);
    // lcd1.print("Line 4");
    lcd2.begin(16,2);
    lcd2.backlight();
    lcd2.print("LCD 16 x 2");
    lcd2.setCursor(0,1);
    lcd2.print("I2C Address 0x3F");
    delay (2000);
    }
    void loop ()
    {
    lcd2.scrollDisplayLeft();
    delay (1000);
    lcd2.scrollDisplayLeft();
    delay (1000);
    lcd2.scrollDisplayLeft();
    delay (1000);
    //---
    //lcd.noDisplay();
    //delay (200);
    //lcd.disaply();
    //-------
    lcd2.clear();
    }

    • @ark9959
      @ark9959 5 лет назад

      Didn't work for me :(

  • @samuelquartey4019
    @samuelquartey4019 4 года назад

    What is the problem i cant see what on the displace well. can see one help me ?

  • @amikhimji
    @amikhimji 4 года назад

    Hi just asking can you make video of ADXL 345, Sensor it uses processing software and we can make pattern in processing software but i dont know how to make diiferent patterns this sensor is Accelerometer, thanks Ami

  • @hyperionrhys1722
    @hyperionrhys1722 6 лет назад

    Is it possible to attach the backpack to the LCD without soldering?

  • @monimi1
    @monimi1 7 лет назад

    Thanks for the video
    Is it necessary to use a logic level converter to 3.3V when I connecting the LCD backpack to a Nodemcu ESP8266

  • @palanisamy4624
    @palanisamy4624 6 лет назад

    sir im using 20×4 LCD of JHD204A. when machine is on during the mode selecting process some chinese letters and unknown letters are arrived but i get output what is the prob .how to rectify? pls give me a solution Imediately

  • @clairsmyers3571
    @clairsmyers3571 4 года назад

    Caution: I had a header soldered to my LCD 1602. It is very tedious removing these headers but, I , carefully got it done.

  • @amitgoel6830
    @amitgoel6830 6 лет назад

    Awesome
    Thank you sir

  • @tropicaljantie
    @tropicaljantie 7 лет назад +1

    well explained

  • @sml.egidiaaaa2316
    @sml.egidiaaaa2316 6 лет назад

    terimakasih banyak. sukses selalu :D

  • @jslbblelectronics7519
    @jslbblelectronics7519 3 года назад

    Sir I have RG2004A 20*4 Display can it compatible with?

  • @jaleelahmed8901
    @jaleelahmed8901 6 лет назад

    sir, I'm trying from last several days, without i2c and with i2c, several codes I tried, successfully uploaded to ide, but the results are same, it lights up brightly, tuning pot make no difference, pls help.

  • @nidhindas9132
    @nidhindas9132 7 лет назад

    i need pcf8574 need to connect to 128*64 GLCD ,how it can be done ?

  • @stephenherbert8575
    @stephenherbert8575 4 года назад

    Works on Mega using SDA & SCL. but I dont get it to work on UNO using A4 & A5.

  • @scholesred1833
    @scholesred1833 8 лет назад

    saravanan can u help me i have a serial display like the one u are showing from the video i dont know how to show the humidity and temperature from the display i mean i dont know the code but i can write the code for the humidity temperature sensor DHT11 and i can show it from serial monitor in arduino IDE from my laptop only thing i dont know is showing it from I2C display and the code for the display i even download DHT11 zipfile can u help me on this plz your video is very helpful thankyou very much sir

  • @assadabdullahiali6912
    @assadabdullahiali6912 5 лет назад

    How to I use the dis play without LCD module

  • @sweetdick3306
    @sweetdick3306 8 лет назад

    thank you

  • @pramithekanayake
    @pramithekanayake 8 лет назад

    Great explanation. But the link is broken. Can you please re upload?

  • @shekharsharmazz7
    @shekharsharmazz7 6 лет назад

    hello, sir, i want to make conductivity meter by using Arduino nano and 16x2 LCD. please help.

  • @anilkhandelwal01
    @anilkhandelwal01 4 года назад

    thanks but can you make omething else from it

  • @debnathmriganka2010
    @debnathmriganka2010 4 года назад

    Sir it is very helpfull video for me as a student. But from many days i am searching a diagram or project for proffessional Led Stroboscope which is used for printing industries. Can you help me for that.

  • @ShaunDobbie
    @ShaunDobbie 7 лет назад

    I have a 20 x 4 lcd and I changed the code lcd.begin(20,4); but all I get on the screen is just a black square that appears in random positions.

    • @anilverma7268
      @anilverma7268 7 лет назад

      It worked for me with this code.
      LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); // Set the LCD I2C address

    • @randomdog4651
      @randomdog4651 6 лет назад

      TO ANYONE WHO HAD A PROBLEM OF BLUE BOXES or the error "LiquidCrystal_I2C lcd(............." ,SOLUTION: in the fist you can wirte this: LiquidCrystal_I2C lcd(0x27,16,4);
      BUT at the void setup you must add this line on the top: Wire.begin();
      I figured it out ;)

  • @minerminer2272
    @minerminer2272 7 лет назад

    nice video!!!

  • @royalklt9672
    @royalklt9672 5 лет назад

    how to connect ds18b20 and 16*2 lcd with i2c backpack on raspberry pi 3

  • @ManuelPaz2014
    @ManuelPaz2014 7 лет назад

    Thanks sir

  • @program_brain
    @program_brain 6 лет назад

    how to program with pi16f877a in mplap sir.
    pls guide me sir

  • @ravikanth2979
    @ravikanth2979 6 лет назад

    hai sir ,thisis ravi kanth from ananthapur.....i watched your video....it is too good .....sir i followed your video carefully..........i ordered a backpak pcf8574t... but in delivery the board is pcf8574AT.....in the video you used first one pcf8574t...........i connected accordind to the procedure......but the display is blank with back light......sir please tell me What is the difference between pcf8574AT & 4T....and how to program pcf8574AT.....THANK U SIR.

  • @loislenebnmoura3737
    @loislenebnmoura3737 7 лет назад

    Hi! I'm trying to use with Galileo but it's failling :'(
    someone can help me with that?

  • @pacovasda5955
    @pacovasda5955 6 лет назад +9

    Just can't handle the music anymore too repetitive endlessly looping going to drive me crazy don't care how good the instructions are I can't handle the music being so repetitive

  • @jaleelahmed8901
    @jaleelahmed8901 6 лет назад

    sir I am trying from several days, different libraries, different codes, without i2c,with i2c but the results are same, it successfully uploaded to arduino ide, only the back light lights up no boxes, no text to be seen, pls help.

    • @xHLGTrashcanx
      @xHLGTrashcanx 6 лет назад

      same

    • @randomdog4651
      @randomdog4651 6 лет назад

      TO ANYONE WHO HAD A PROBLEM OF BLUE BOXES or the error "LiquidCrystal_I2C lcd(............." ,SOLUTION: in the fist you can wirte this: LiquidCrystal_I2C lcd(0x27,16,4);
      BUT at the void setup you must add this line on the top: Wire.begin();
      I figured it out ;)

  • @m.iinnovations8229
    @m.iinnovations8229 6 лет назад

    please help. i have to convert serial to i2c . (gps module)
    please tell me how
    nice vedio thanks

  • @MGDNation
    @MGDNation 7 лет назад

    I am trying to add a flowmeter to an lcd. All I am getting is a bunch of weird characters in my display any ideas how to get real values from the below code?
    #include
    #include
    #include #define I2C_ADDR 0x27 //

  • @randomdog4651
    @randomdog4651 6 лет назад

    TO ANYONE WHO HAD A PROBLEM OF BLUE BOXES or the error "LiquidCrystal_I2C lcd(............." ,SOLUTION: in the fist you can wirte this: LiquidCrystal_I2C lcd(0x27,16,4);
    BUT at the void setup you must add this line on the top: Wire.begin();
    I figured it out ;)

  • @rcolinares68
    @rcolinares68 4 года назад +3

    I appreciate you sharing this tutorial, but for heaven's sake that background music is awful. Please be mindful that your viewers will be watching for over thirteen minutes and have to listen to that music...

  • @games_secrets
    @games_secrets 5 лет назад

    in3l tbon mk

  • @richardbianco3193
    @richardbianco3193 4 года назад

    Dead frickin' links boo hoo