From 48aea695467c1e583b31c0be5954cbcdc82a0fc6 Mon Sep 17 00:00:00 2001 From: Magnus Date: Sat, 14 Sep 2019 11:07:30 +0200 Subject: [PATCH] Fixed problem with strings not being printed on LCD display (only first char printed). Caused by fix in library, Check Print::write(byte) return and stop on fail (#4527) --- src/IicLcd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IicLcd.cpp b/src/IicLcd.cpp index f9c8c5f5..9dab96e8 100644 --- a/src/IicLcd.cpp +++ b/src/IicLcd.cpp @@ -275,7 +275,7 @@ inline size_t IIClcd::write(uint8_t value) { if (!_bufferOnly) { send(value, Rs); } - return 0; + return 1; } /************ low level data pushing commands **********/