6 Commits
1.1.0 ... 1.1.3

Author SHA1 Message Date
marcoschwartz
9a4e33e6cd Update library.properties 2016-03-07 09:33:50 +01:00
marcoschwartz
5d01111db1 Merge pull request #5 from cmaglie/fix-write
Fixed wrong return value for ::write() method
2015-11-29 19:39:40 +01:00
Cristian Maglie
d8436069f2 Upgrading library patch version 2015-11-13 13:07:45 +01:00
Cristian Maglie
143b5a1cb3 Fix incorrect Print.write() return value.
The write method must return the number of byte successfully written
(1 in this case).

This fixes the library with the latest AVR core that stops writing
on error:
25d81c98e4

Without this patch the LCD shows only the first charater of a string.
2015-11-13 12:59:12 +01:00
marcoschwartz
24a5d3a28b Merge pull request #2 from Avamander/patch-1
Update library.properties
2015-10-19 18:18:47 +02:00
Avamander
08a58359e0 Update library.properties
Fixed a few issues with the libraries.properties file.
2015-10-18 21:37:07 +03:00
2 changed files with 7 additions and 7 deletions

View File

@@ -9,7 +9,7 @@
#define printIIC(args) Wire.write(args)
inline size_t LiquidCrystal_I2C::write(uint8_t value) {
send(value, Rs);
return 0;
return 1;
}
#else

View File

@@ -1,9 +1,9 @@
name=LiquidCrystal_I2C
version=1.1
author=Marco Schwartz
version=1.1.2
author=Frank de Brabander
maintainer=Marco Schwartz <marcolivier.schwartz@gmail.com>
sentence=A library for DFRobot I2C LCD displays.
paragraph=A library for DFRobot I2C LCD displays. It allows to control DFRobot I2C displays with commands similar to the Arduino LiquidCrystal library.
sentence=A library for I2C LCD displays.
paragraph= The library allows to control I2C displays with functions extremely similar to LiquidCrystal library. THIS LIBRARY MIGHT NOT BE COMPATIBLE WITH EXISTING SKETCHES.
category=Display
url=https://github.com/marcoschwartz/LiquidCrystal_I2C
architectures=*
architectures=avr