Serial LCD - I2C Backpack

  Рет қаралды 162,208

Saravanan AL

Saravanan AL

Күн бұрын

Пікірлер: 78
@Eurus721
@Eurus721 8 жыл бұрын
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!
@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
@dimitrichelidze3269
@dimitrichelidze3269 8 жыл бұрын
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...
@silviorossi5150
@silviorossi5150 4 жыл бұрын
Thank you for the tutorial. Greetings from Italy!
@budirahmani
@budirahmani 4 жыл бұрын
Yes, we need an I2C address scanner before use it. Nice job Sir.
@TorIvanBoine
@TorIvanBoine 7 жыл бұрын
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!
@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 !!
@juanitoco7018
@juanitoco7018 8 жыл бұрын
Thank you. Your link is particularly straight forward working.
@MatsK007
@MatsK007 8 жыл бұрын
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 жыл бұрын
Yes that is always a good practice to import & install library.Thank you for the tip.
@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.
@stephenherbert8575
@stephenherbert8575 4 жыл бұрын
Works on Mega using SDA & SCL. but I dont get it to work on UNO using A4 & A5.
@samuelquartey4019
@samuelquartey4019 5 жыл бұрын
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
@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 6 жыл бұрын
Didn't work for me :(
@assadabdullahiali6912
@assadabdullahiali6912 5 жыл бұрын
How to I use the dis play without LCD module
@chuivan13
@chuivan13 5 жыл бұрын
Extremely Useful! Thank you so much!
@danljohnston
@danljohnston 7 жыл бұрын
Very helpful video, thanks for posting.
@amikhimji
@amikhimji 4 жыл бұрын
Hi very good explanation thank you
@muratcanbarut64
@muratcanbarut64 5 жыл бұрын
Thank you so much great lesson Extremely Useful!
@anilkhandelwal01
@anilkhandelwal01 4 жыл бұрын
thanks but can you make omething else from it
@kolhatkarchinmay
@kolhatkarchinmay 8 жыл бұрын
Nice video sir..Good explanation..
@electromesh9324
@electromesh9324 8 жыл бұрын
Thanks. Everything was very clear
@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
@royalklt9672
@royalklt9672 6 жыл бұрын
how to connect ds18b20 and 16*2 lcd with i2c backpack on raspberry pi 3
@hyperionrhys1722
@hyperionrhys1722 7 жыл бұрын
Is it possible to attach the backpack to the LCD without soldering?
@pramithekanayake
@pramithekanayake 8 жыл бұрын
Great explanation. But the link is broken. Can you please re upload?
@nidhindas9132
@nidhindas9132 7 жыл бұрын
i need pcf8574 need to connect to 128*64 GLCD ,how it can be done ?
@Hansen4155
@Hansen4155 8 жыл бұрын
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 7 жыл бұрын
Same problem here...
@monalisadas9805
@monalisadas9805 7 жыл бұрын
same problem
@kengineer1379
@kengineer1379 7 жыл бұрын
delete the old liquidcrystal library before placing the new lcd library
@abpccpba
@abpccpba 7 жыл бұрын
Great presentation.
@NLDennis
@NLDennis 7 жыл бұрын
Works fine, thank you!
@jslbblelectronics7519
@jslbblelectronics7519 3 жыл бұрын
Sir I have RG2004A 20*4 Display can it compatible with?
@laidman2007
@laidman2007 5 жыл бұрын
This is excellent!
@ShaunDobbie
@ShaunDobbie 8 жыл бұрын
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 ;)
@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
@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.
@shekharsharmazz7
@shekharsharmazz7 7 жыл бұрын
hello, sir, i want to make conductivity meter by using Arduino nano and 16x2 LCD. please help.
@tomg8817
@tomg8817 8 жыл бұрын
Very helpful; thank you sir!
@program_brain
@program_brain 6 жыл бұрын
how to program with pi16f877a in mplap sir. pls guide me sir
@agahgokdag1845
@agahgokdag1845 5 жыл бұрын
DİD YOU FİND ?
@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
@iam.miikey
@iam.miikey 7 жыл бұрын
Great tutorial, clear and simple!!!
@Virus00000000000001
@Virus00000000000001 6 жыл бұрын
u saved my life
@jaleelahmed8901
@jaleelahmed8901 7 жыл бұрын
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.
@wolfgangboettcher3126
@wolfgangboettcher3126 4 жыл бұрын
Fehler 16x2 geht nicht bei mir alles logisch angeschlossen,mamamia wer soll das alles Wissen,werde Testen
@loislenebnmoura3737
@loislenebnmoura3737 7 жыл бұрын
Hi! I'm trying to use with Galileo but it's failling :'( someone can help me with that?
@jaleelahmed8901
@jaleelahmed8901 7 жыл бұрын
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 ;)
@amitgoel6830
@amitgoel6830 6 жыл бұрын
Awesome Thank you sir
@m.iinnovations8229
@m.iinnovations8229 6 жыл бұрын
please help. i have to convert serial to i2c . (gps module) please tell me how nice vedio thanks
@sweetdick3306
@sweetdick3306 8 жыл бұрын
thank you
@tropicaljantie
@tropicaljantie 7 жыл бұрын
well explained
@minerminer2272
@minerminer2272 8 жыл бұрын
nice video!!!
@ravikanth2979
@ravikanth2979 7 жыл бұрын
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.
@MGDNation
@MGDNation 8 жыл бұрын
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 //
@ManuelPaz2014
@ManuelPaz2014 8 жыл бұрын
Thanks sir
@pacovasda5955
@pacovasda5955 6 жыл бұрын
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
@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 5 жыл бұрын
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 5 жыл бұрын
Dead frickin' links boo hoo
How to use an i2c LCD display with arduino - including library install
18:58
What is I2C, Basics for Beginners
18:30
nandland
Рет қаралды 171 М.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН
Using LCD Displays with Arduino
46:23
DroneBot Workshop
Рет қаралды 1,7 МЛН
Arduino Pushbutton Menu System with I2C LCD Display Tutorial
5:07
Arduino Intro
Рет қаралды 13 М.
PCF8574 I2C GPIO Expander Tutorial
19:22
Gadget Reboot
Рет қаралды 38 М.
Using EEPROM with Arduino - Internal & External
31:54
DroneBot Workshop
Рет қаралды 202 М.
Using Servo Motors with Arduino
43:06
DroneBot Workshop
Рет қаралды 1,4 МЛН