KS0381 EASY plug I2C 1602 LCD Module-180° Interface: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
(Created page with "thumb|500px|right|Keyestudio EASY plug I2C 1602 LCD Module-180° Interface <br> ==Introduction== This is a basic 16 character by 2 line LCD display mod...")
 
Line 59: Line 59:
<br>[[File:ks0381 Result.png|600px|frameless|thumb]]<br>
<br>[[File:ks0381 Result.png|600px|frameless|thumb]]<br>


<br>
==Resources Download==
*'''Download all the information here:'''<br>
https://drive.google.com/open?id=1aH42tUFPpDNQI-MwqrtvlAvEwBb7RWFM


*'''Download the datasheet:'''<br>
https://drive.google.com/open?id=1ibOZryM__va2ZPkgNQnYeXIN6AX2n8_H


<br>
==Get One Now==
*'''Official website:'''  http://www.keyestudio.com/ks0381.html
<br>
[[category: EASY Plug]]
[[category: EASY Plug]]

Revision as of 10:58, 29 December 2018

Keyestudio EASY plug I2C 1602 LCD Module-180° Interface


Introduction

This is a basic 16 character by 2 line LCD display module.
The LCD module displays white text on blue background, and comes with I2C communication interface.
You can use only one line to connect it to microcontroller’s I2C communication interface.
On the back comes with a potentiometer, which can be used to adjust the backlight, with default address 0x27.
It is very easy for you to connect the module to control board for communication using only an RJ11 cable


Features

  • Interface: Easy plug
  • Operating voltage: DC 5V
  • White text on blue background
  • Communication way: I2C
  • I2C Address: 0x27
  • Display characters: 16 characters per row, 32 characters in 2 rows
  • Adjusting contrast by a potentiometer
  • Dimensions: 80mm*36mm*30mm
  • Weight: 37.5g


Connection Diagram


thumb

Test Code

Copy and paste below code to Arduino IDE and upload.

#include<Wire.h>    // Place file “Wire.h” under the directory “library” of Arduino
#include<LiquidCrystal_I2C.h>  // Place “LiquidCrystal_I2C.h” under the directory “library” of Arduino
LiquidCrystal_I2C lcd(0x27,16,2);// set the LCD address to 0x27 for a 16 chars and 2 line display
void setup()
{
lcd.init();// initialize the LCD
lcd.init();// Print a message to the LCD.
lcd.backlight();
lcd.setCursor(2,0);
lcd.print("Hello, world!");
lcd.setCursor(2,1);
lcd.print("keyestudio!");
}
void loop()
{
}

Code to Note:
Before compile the code, do remember to put the libraries needed inside the libraries folder of Arduino IDE directory. Download all the libraries:
https://drive.google.com/open?id=105RNjo0aDBthorceoKgqaJ251D3tbWlc


Test Result

Initially, you should see the words “hello, word!” and “keyestudio!” pop up on your LCD.
Remember you can adjust the contrast using the potentiometer on the module back if you can’t make out the words clearly.
thumb


Resources Download

  • Download all the information here:

https://drive.google.com/open?id=1aH42tUFPpDNQI-MwqrtvlAvEwBb7RWFM

  • Download the datasheet:

https://drive.google.com/open?id=1ibOZryM__va2ZPkgNQnYeXIN6AX2n8_H



Get One Now