Skip to content

Commit 4cb67f4

Browse files
committed
README Changes Version 2.2.0
1 parent 0745864 commit 4cb67f4

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

README.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
[![arduino-library-badge](https://www.ardu-badge.com/badge/LiquidCrystal_PCF8574.svg?)](https://www.ardu-badge.com/LiquidCrystal_PCF8574)
66

7-
[![GitLicense](https://gitlicense.com/badge/mathertel/LiquidCrystal_PCF8574)](https://gitlicense.com/license/mathertel/LiquidCrystal_PCF8574)
8-
97
A library for driving LiquidCrystal displays (LCD) by using the I2C bus and an PCF8574 I2C adapter.
108

119
There are modules that can be soldered or stacked to the display that offers an I2C interface for communication instead of the 8+ digital lines that are used to send data to the display.
@@ -15,6 +13,26 @@ If you use a module with a different wiring, you can use one of the class constr
1513

1614
See the web site for more details and pictures: <https://www.mathertel.de/Arduino/LiquidCrystal_PCF8574.aspx>
1715

16+
## Changes Version 2.2.0 (2023-04-03)
17+
18+
The default i2c address 0x27 is set as default parameter.
19+
20+
You can use an explicit i2c address with
21+
22+
``` cpp
23+
LiquidCrystal_PCF8574 lcd(0x22); // set the LCD address to 0x27
24+
```
25+
26+
or you can rely on the default i2c address = 0x27 with
27+
28+
``` cpp
29+
LiquidCrystal_PCF8574 lcd(); // use the default LCD address == 0x27
30+
```
31+
32+
See datasheet of PCF8574 (and PCF8574A) for further info on usable i2c addresses.
33+
34+
Thanks for contribution from @robaol
35+
1836
## Changes Version 2.1.0 (2022-08-21)
1937

2038
Enables using a non-default i2c / TwoWire port for boards that support multiple ports.
@@ -23,7 +41,6 @@ Added example `LCD_Burnin.ino` showing how to transfer a 20 char and 4 lines buf
2341

2442
Thanks for additions from @uutzinger
2543

26-
2744
## Changes Version 2.0.0 (2022-05-26)
2845

2946
* The interface was modified to use 8-bit datatypes as supported by the underling hardware.

0 commit comments

Comments
 (0)