@J-M-L I was trying my hands on LCD. But it is not working
I am using a LCD with an I2C module. I have made the proper connections for the 04 pins of the I2C module with the arduino. But nothing shows up on the screen after running the example of Arduino-Liquid-Crystal-I2C-Library-Master
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
// initialize the LCD
lcd.begin();
// Turn on the blacklight and print a message.
lcd.backlight();
lcd.print("Hello, world!");
}
void loop()
{
// Do nothing here...
}
So I want to ask is it necessary to solder the I2C module pins to the LCD ?
Also, I want to know that when we plug the LCD (along with I2C module) to arduino, does the Backlight of LCD glows by itself (even befire uploading any sktech) ? Because this is happening with me. Only the backlight is constantly glowing up and even after uploading the sketch nothing shows up on the LCD
zillions !
eBay, amazon, aliexpress etc... they all have some I'm sure
just verify that it's already soldered...
(you might as well buy a soldering iron and do the job yourself if you plan to keep playing with Arduinos)