Ks0061 keyestudio 1602 I2C Module: Difference between revisions
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) |
||
| Line 59: | Line 59: | ||
'''Official Website''' | '''Official Website''' | ||
http://www.keyestudio.com/ | http://www.keyestudio.com/ks0061.html | ||
'''Amazon Store''' | '''Amazon Store''' | ||
https://www.amazon.com/Keyestudio-Display-Module-Arduino-raspberry/dp/B0177XQE7K/ | https://www.amazon.com/Keyestudio-Display-Module-Arduino-raspberry/dp/B0177XQE7K/ | ||
[[category:Module]] | [[category:Module]] | ||
Revision as of 16:26, 16 April 2018
Keyestudio 1602 I2C Module
Introduction
keyestudio 1602 I2C module is a 16 character by 2 line LCD display with Blue background and White backlight. The original 1602 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.
Specification
- I2C Address:0x27
- Back lit (Blue with white char color)
- Supply voltage: 5V
- Interface:I2C/TWI x1,Gadgeteer interface x2
- Adjustable contrast
- Size:82x35x18 mm
Connection Diagram
I602 is equipped with 4 pins in total. SCL should be connected to analog 5, SDA to analog 4, VCC to +5V and GND to ground. Below is connection diagram for your reference:

Sample Code
//Compatible with the Arduino IDE 1.0
//Library version:1.1
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
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(3,0);
lcd.print("Hello, world!");
lcd.setCursor(2,1);
lcd.print("keyestudio!");
}
void loop()
{
}
Resources
Get the Libraries of Wire and LiquidCrystal_I2C
https://drive.google.com/open?id=1Ee5b2XO0f0Xzl39SN7pukvCStMkxkcHZ
Video
http://www.keyestudio.com/wp/ks0061/
https://drive.google.com/open?id=1Gfm8thFdAjMD9YhceG9Q2_TckFYOhZhP
Buy from
Official Website
http://www.keyestudio.com/ks0061.html
Amazon Store
https://www.amazon.com/Keyestudio-Display-Module-Arduino-raspberry/dp/B0177XQE7K/