Ks0062 keyestudio I2C LCD2004 Module: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
==I2C LCD2004 Module==
<br>[[File:ks0062-1.png|500px|frameless|thumb]]<br>


<br>
==I2C LCD 2004 Module==
<br>[[File:Ks0062-2-1.png|500px|frameless|thumb]]<br>
<br>
==Introduction==
==Introduction==
keyestudio 2004 I2C Module is a 20 character by 4 line LCD display with Blue background and White backlight. The original 2004 LCD needs 7 IO ports to be up and running, ours is built with Arduino IIC/I2C interface, saving you 5 IO ports. This LCD is ready-to-use because it is compatible with the Arduino Liquid Crystal Library.<br>
keyestudio 2004 I2C Module is a 20 character by 4 line LCD display with Blue background and White backlight. <br>
The original 2004 LCD needs 7 IO ports to be up and running, ours is built with Arduino IIC/I2C interface, saving you 5 IO ports. <br>
This LCD is ready-to-use because it is compatible with the Arduino Liquid Crystal Library.<br>
LCDs are great for printing data and showing values. Adding an LCD to your project will make it super portable.<br>
On the back of LCD display there is a blue potentiometer. You can turn the potentiometer to adjust the contrast. <br>
Notice that the screen will get brighter or darker and that the characters become more visible or less visible. <br>


<br>
==Specification==
==Specification==
* Interface: I2C
* Interface: I2C
* I2C address: 0x27
* I2C address: 0x27
* Operating voltage: +5V
* Operating voltage: +5V
* Size: 27.7mm×42.6mm
* Contrast control: via potentiometer
* Contrast control: via potentiometer


<br>[[File:Ks0062-3.png|600px|frameless|thumb]]<br>
<br>
==Connection Diagram ==
==Connection Diagram ==
This module carries I2C interface, so we need to comply with I2C protocol in usage and corresponding head files must be included and added into the library. <br>
This module carries I2C interface, so we need to comply with I2C protocol in usage and corresponding head files must be included and added into the library. <br>


Below is the connection diagram between this module and Arduino controller:<br>
Below is the connection diagram between this module and Arduino controller:<br>
<br>[[File:ks0062-2.png|500px|frameless|thumb]]<br>
<br>[[File:Ks0062-1.png|600px|frameless|thumb]]<br>


<br>
==Sample Code==
==Sample Code==
<pre>
<pre>
Line 48: Line 60:
}
}
</pre>
</pre>
Note: To ensure that this module will work properly, these two head files, namely Wire and LiquidCrystal_I2C, must be added into our library before code compiling.<br>
<br>
<span style =color:red>'''Note:''' To ensure that this module will work properly, these two head files, namely Wire and LiquidCrystal_I2C, must be added into our library before code compiling.<br>
 
After uploading the code, you should see the LCD screen pop up the characters "Hello, world!" and more.<br>


==Resources ==
'''Get the Libraries'''


https://drive.google.com/open?id=14VPCVHqlfbtxAn5LCF3tGZytkGEMrk3Q
<br>


'''Video'''
==Resources ==
* '''Get the Libraries and Code'''<br>
https://fs.keyestudio.com/KS0062


http://www.keyestudio.com/wp/ks0062/
* '''Video'''<br>
http://video.keyestudio.com/ks0062/


'''PDF'''


https://drive.google.com/open?id=18c0F-71efKdjNfLHllJ6NPByaYIUJiXx
<br>


==Buy from ==
==Buy from ==
'''Official Website'''


http://www.keyestudio.com/ks0062.html
*[https://www.keyestudio.com/free-shipping-keyestudio-i2c-lcd-20x4-2004-lcd-display-module-for-arduino-uno-r3-mega-2560-r3-white-letters-on-blue-backlight-p0448-p0448.html     '''Official Website''']


'''Amazon Store'''
*[https://www.amazon.com/Keyestudio-Display-Module-Arduino-raspberry/dp/B01799UUGS/  '''Amazon Store''']


https://www.amazon.com/Keyestudio-Display-Module-Arduino-raspberry/dp/B01799UUGS/
*[https://www.aliexpress.com/store/product/Free-shipping-Keyestudio-I2C-LCD-20X4-2004-LCD-Display-Module-UNO-R3-MEGA-2560-R3/1452162_32636326737.html?spm=2114.12010615.8148356.11.1bd23530LLjHSK    '''Available on aliexpress''']


'''Available on ebay'''
[https://www.ebay.com/itm/Keyestudio-IIC-I2C-TWI-LCD-2004-Display-Module-for-Arduino-UNO-R3-MEGA-2560-R3-/132517192907]


[[category:Module]]
[[category:Module]]

Latest revision as of 09:11, 8 January 2021


I2C LCD 2004 Module


thumb


Introduction

keyestudio 2004 I2C Module is a 20 character by 4 line LCD display with Blue background and White backlight.
The original 2004 LCD needs 7 IO ports to be up and running, ours is built with Arduino IIC/I2C interface, saving you 5 IO ports.
This LCD is ready-to-use because it is compatible with the Arduino Liquid Crystal Library.
LCDs are great for printing data and showing values. Adding an LCD to your project will make it super portable.
On the back of LCD display there is a blue potentiometer. You can turn the potentiometer to adjust the contrast.
Notice that the screen will get brighter or darker and that the characters become more visible or less visible.


Specification

  • Interface: I2C
  • I2C address: 0x27
  • Operating voltage: +5V
  • Contrast control: via potentiometer


thumb


Connection Diagram

This module carries I2C interface, so we need to comply with I2C protocol in usage and corresponding head files must be included and added into the library.

Below is the connection diagram between this module and Arduino controller:

thumb


Sample Code

//YWROBOT
//Compatible with the Arduino IDE 1.0
//Library version:1.1
#include <Wire.h> 
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27,20,4);  // 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(3,0);
  lcd.print("Hello, world!");
  lcd.setCursor(2,1);
  lcd.print("Hello,keyestudio!");
   lcd.setCursor(0,2);
  lcd.print("Arduino LCM IIC 2004");
   lcd.setCursor(2,3);
  lcd.print("Power By Ec-yuan!");
}
void loop()
{
}


Note: To ensure that this module will work properly, these two head files, namely Wire and LiquidCrystal_I2C, must be added into our library before code compiling.

After uploading the code, you should see the LCD screen pop up the characters "Hello, world!" and more.



Resources

  • Get the Libraries and Code

https://fs.keyestudio.com/KS0062

  • Video

http://video.keyestudio.com/ks0062/



Buy from