Skip to content

Commit

Permalink
Adjusted example FONT_WRITER for 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
berkutta committed Aug 11, 2015
1 parent 10ec1d5 commit ecf2cf5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/FONT_WRITER/FONT_WRITER.ino
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file FONT_WRITER.ino
* @author Benjamin Marty ([email protected])
* @date 20.12.2014
* @date 11.8.2015
* @brief Main File of FONT_WRITER Example
* @bug No known bugs.
*
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit ecf2cf5

Please sign in to comment.