Main centres: | 1-3 business days |
Regional areas: | 3-4 business days |
Remote areas: | 3-5 business days |
You can solder the pins directly to your 1602 LCD or use it with a breadboard. It include a adjustment pot to control the back-light brightness,
I2C Module For 1602 LCD Specification
Arduino Code
#include <Wire.h> #include <LiquidCrystal_I2C.h>// Set the LCD address to 0x3F for a 16 chars and 2 line displayLiquidCrystal_I2C lcd(0x3F, 16, 2);void setup(){// initialize the displaylcd.begin();// Turn on the blacklight and print a message.lcd.backlight();lcd.print("Hello, world!");}void loop(){// Do nothing here...}