Difference between revisions of "I²C LCD1602"
Line 178: | Line 178: | ||
=='''For Raspberry Pi User'''== | =='''For Raspberry Pi User'''== | ||
− | ==='''Build the circuit'''=== | + | ==='''<font color="orange">Build the circuit</font>'''=== |
.. image:: ../img/image96.png | .. image:: ../img/image96.png | ||
− | ==='''Setup I2'''=== | + | ==='''<font color="orange">Setup I2</font>'''=== |
'''Step 1''': Enable the I2C port of your Raspberry Pi (If you have | '''Step 1''': Enable the I2C port of your Raspberry Pi (If you have | ||
Line 255: | Line 255: | ||
'''Step 9''': Install libi2c-dev or smbus.<br> | '''Step 9''': Install libi2c-dev or smbus.<br> | ||
− | '''<font color=" | + | '''<font color="green">For C language users</font>''' |
<pre> | <pre> | ||
Line 261: | Line 261: | ||
</pre> | </pre> | ||
− | '''<font color=" | + | '''<font color="green">For Python users</font>''' |
<pre> | <pre> | ||
sudo pip3 install smbus2 | sudo pip3 install smbus2 | ||
</pre> | </pre> | ||
− | ==='''Download and run the code'''=== | + | ==='''<font color="orange">Download and run the code</font>'''=== |
'''Step 1''': Transfer the package [http://wiki.sunfounder.cc/images/8/87/LCD1602_for_Raspberry_Pi.zip LCD1602_for_Raspberry_Pi] to the Raspberry Pi<br> | '''Step 1''': Transfer the package [http://wiki.sunfounder.cc/images/8/87/LCD1602_for_Raspberry_Pi.zip LCD1602_for_Raspberry_Pi] to the Raspberry Pi<br> | ||
Line 279: | Line 279: | ||
</pre> | </pre> | ||
− | '''<font color=" | + | '''<font color="green">(For C Language Users)</font>''' |
'''Step 3''': Get into the folder of code.<br> | '''Step 3''': Get into the folder of code.<br> | ||
<pre> | <pre> | ||
Line 295: | Line 295: | ||
</pre> | </pre> | ||
− | '''<font color=" | + | '''<font color="green">(For Python Users)</font>''' |
'''Step 3''': Get into the folder of code.<br> | '''Step 3''': Get into the folder of code.<br> | ||
<pre> | <pre> |
Revision as of 08:15, 12 April 2023
Contents
Introduction
As we all know, though LCD and some other displays greatly enrich the man-machine interaction, they share a common weakness. When they are connected to a controller, multiple IOs will be occupied of the controller which has no so many outer ports. Also it restricts other functions of the controller. Therefore, LCD1602 with an I2C bus is developed to solve the problem.
I2C bus is a type of serial bus invented by PHLIPS. It is a high performance serial bus which has bus ruling and high or low speed device synchronization function required by multiple host system. I2C bus has only two bidirectional signal lines, Serial Data Line (SDA) and Serial Clock Line (SCL). The blue potentiometer on the I2C LCD1602 is used to adjust backlight to make it easier to display on the I2C LCD1602.
- GND: Ground
- VCC: Voltage supply, 5V.
- SDA: Serial data line. Connect to VCC through a pullup resistor.
- SCL: Serial clock line. Connect to VCC through a pullup resistor.
I2C Address
The default address is basically 0x27, in a few cases it may be 0x3F.
Taking the default address of 0x27 as an example, the device address can be modified by shorting the A0/A1/A2 pads; in the default state, A0/A1/A2 is 1, and if the pad is shorted, A0/A1/A2 is 0.
.. image:: img/i2c_address.jpg
:width: 600
Backlight/Contrast
Backlight can be enabled by jumper cap, unplugg the jumper cap to disable the backlight. The blue potentiometer on the back is used to adjust the contrast (the ratio of brightness between the brightest white and the darkest black).
.. image:: img/back_lcd1602.jpg
- Shorting Cap: Backlight can be enabled by this cap,unplugg this cap to disable the backlight.
- Potentiometer: It is used to adjust the contrast (the clarity of the displayed text), which is increased in the clockwise direction and decreased in the counterclockwise direction.
For Arduino User
Step 1: Connect the circuit
See the following table for connection between the I2C LCD1602 and the SunFounder Uno board:
I2C LCD1602 | SunFounder Uno board |
---|---|
GND | GND |
VCC | 5V |
SDA | A4 /pin 20 mega2560 |
SCL | A5 /pin 21 mega2560 |
Step 2: Add library
Before you upload the code to the control board,you neeed to add the LiquidCrystal_I2C library.
1) Download the LiquidCrystal_I2C library
2) Open the Arduino IDE,Select Sketch -> Include Library -> Add ZIP Library
3) Find the file LiquidCrystal_I2C which you just download. Click it open and then you'll be prompted by "Library added to your libraries. Check 'Import libraries'”. You also can see the libraries just imported have appeared on the list by Sketch->Include Library->LiquidCrystal_I2C.
Step 3: Copy the code
Copy the follwing code to the Arduino IDE ,click to the upload icon to upload the code to the control board
/******************************** name:I2C LCD1602 function:You should now see your I2C LCD1602 display the flowing characters: "SunFounder" and "hello, world". ********************************/ //Email:support@sunfounder.com //Website:www.sunfounder.com /********************************/ // include the library code #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.backlight(); //open the backlight } /*********************************************************/ void loop() { lcd.setCursor(3, 0); // set the cursor to column 3, line 0 lcd.print("SunFounder"); // Print a message to the LCD lcd.setCursor(2, 1); // set the cursor to column 2, line 1 lcd.print("Hello, World!"); // Print a message to the LCD. } /************************************************************/
Experimental Phenomenon
You should now see your I2C LCD1602 display the flowing characters "SunFounder" and "hello, world".
Note
If everything is correct,But the display just shows 16 black rectangles on Line 1.it may be the address of i2c is not 0x27,therfore you need to run the following code to read the address,then modify the 0x27 to which you read.
LiquidCrystal_I2C lcd(0x27,16,2);
/***************************************************** * name:I2C_Address * function:read the address of the I2C lcd1602 * Connection: * I2C UNO * GND GND * VCC 5V * SDA A4(pin20 in mega2560) * SCL A5(pin21 in mega2560) ********************************************************/ #include <Wire.h> void setup() { Wire.begin(); Serial.begin(9600); Serial.println("\nI2C Scanner"); } void loop() { byte error, address; int nDevices; Serial.println("Scanning..."); nDevices = 0; for(address = 1; address < 127; address++ ) { // The i2c_scanner uses the return value of // the Write.endTransmisstion to see if // a device did acknowledge to the address. Wire.beginTransmission(address); error = Wire.endTransmission(); if (error == 0) { Serial.print("I2C device found at address 0x"); if (address<16) Serial.print("0"); Serial.print(address,HEX); Serial.println(" !"); nDevices++; } else if (error==4) { Serial.print("Unknow error at address 0x"); if (address<16) Serial.print("0"); Serial.println(address,HEX); } } if (nDevices == 0) Serial.println("No I2C devices found\n"); else Serial.println("done\n"); delay(5000); // wait 5 seconds for next scan }
For Raspberry Pi User
Build the circuit
.. image:: ../img/image96.png
Setup I2
Step 1: Enable the I2C port of your Raspberry Pi (If you have
enabled it, skip this; if you do not know whether you have done that or
not, please continue).
sudo raspi-config
Step 2: 3 Interfacing options.
.. image:: media/image282.png
:align: center
Step 3: P5 I2C.
.. image:: media/image283.png
:align: center
Step 4: <Yes>, then <Ok> -> <Finish>.
.. image:: media/image284.png
:align: center
Step 5: Check whether the i2c modules are loaded and active.
lsmod | grep i2c
Step 6: Then the following codes will appear (the number may be different).
</pre>
i2c_dev 6276 0 i2c_bcm2708 4121 0
</pre>
Step 7: Install i2c-tools.
sudo apt-get install i2c-tools
Step 8: Check the address of the I2C device.
i2cdetect -y 1 # For Raspberry Pi 2 and higher version
i2cdetect -y 0 # For Raspberry Pi 1
pi@raspberrypi ~ $ i2cdetect -y 1 0 1 2 3 4 5 6 7 8 9 a b c d e f 00: -- -- -- -- -- -- -- -- -- -- -- -- -- 10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 40: -- -- -- -- -- -- -- -- 48 -- -- -- -- -- -- -- 50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 70: -- -- -- -- -- -- -- --
If there is an I2C device connected, the address of the device will be displayed.
Step 9: Install libi2c-dev or smbus.
For C language users
sudo apt-get install libi2c-dev
For Python users
sudo pip3 install smbus2
Download and run the code
Step 1: Transfer the package LCD1602_for_Raspberry_Pi to the Raspberry Pi
wget http://wiki.sunfounder.cc/images/8/87/LCD1602_for_Raspberry_Pi.zip
Step 2: Extract the package
unzip LCD1602_for_Raspberry_Pi.zip
(For C Language Users)
Step 3: Get into the folder of code.
cd LCD1602_for_Raspberry_Pi/C
Step 4: Compile
gcc lcd1602.c –o lcd1602 –lwiringPiDev –lwiringPi
Step 5: Run.
sudo ./lcd1602
(For Python Users)
Step 3: Get into the folder of code.
cd LCD1602_for_Raspberry_Pi/Python
Step 4: Run.
sudo python lcd1602.py
Resources=
PCF8574T_datasheet
Test_Experiment_for_Raspberry_Pi
LiquidCrystal_I2C library