From ecf2cf59ba5c5b9e9eb89bdb6c36808ce3dab8ec Mon Sep 17 00:00:00 2001 From: Benjamin Marty Date: Tue, 11 Aug 2015 09:47:28 +0200 Subject: [PATCH] Adjusted example FONT_WRITER for 1.2.0 --- examples/FONT_WRITER/FONT_WRITER.ino | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/FONT_WRITER/FONT_WRITER.ino b/examples/FONT_WRITER/FONT_WRITER.ino index 2343b0b..cbc7155 100644 --- a/examples/FONT_WRITER/FONT_WRITER.ino +++ b/examples/FONT_WRITER/FONT_WRITER.ino @@ -1,7 +1,7 @@ /** * @file FONT_WRITER.ino * @author Benjamin Marty (bmarty@kochag.ch) -* @date 20.12.2014 +* @date 11.8.2015 * @brief Main File of FONT_WRITER Example * @bug No known bugs. * @@ -29,20 +29,20 @@ void loop() for(int x = 65; x <= 90; x++) { - matrix.font_write(x); + matrix.write_char(x); delay(500); } - matrix.font_write(142); + matrix.write_char(142); delay(500); - matrix.font_write(153); + matrix.write_char(153); delay(500); - matrix.font_write(154); + matrix.write_char(154); delay(500);