Connect the I2C LCD1602 to the I2C port of Arduino(SDA<->A4 and SCL<->A5) and power this module with 5V voltage as belows:
After connecting the hardware, Downloadthe "Hello World" demo to your Arduino board. you can refer to Here to learn how to download the sketchs.
500px
You can also make the LCD to display your own chars or logos as you like, you need to constrat your own chars in your program, as the method in the "CustomChars" demo. also, it would be easy for you to make the LCD display what you input with the serial port, just as the "SerialDisplay" demo, you can sent what you want to display with the serial monitor in the Arduino IDE, please note that you should set the baudrate to 9600. for me, i want the I2C LCD 1602 to show "good day".
The Backlight can be controlled by the firmware or the on-board jumper:
Firmware:
lcd.backlight();// light on the backlight; lcd.noBacklight();//light off the backligth;
Hardware:
There is a jumper on the board, if you take away this jumper , the backlight will aways be off:
You can control the LCD contrast by adjust the on-board potentiometer :
For the usagage of other functions, pleae refer to the "LiquidCrystal_I2C.h" in the sourcecode of I2C LCD library.
Your email address will not be published. Required fields are marked *
Please login to write review!
Looks like there are no reviews yet.