From 2588d8beb54580be215780e579cde61ef90ba99a Mon Sep 17 00:00:00 2001 From: Dirk Jahnke Date: Wed, 30 Jan 2019 13:29:10 +0100 Subject: [PATCH] Moved eyes animation to middle of display; changed intro display. --- src/Display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Display.cpp b/src/Display.cpp index 9aa2a63..dece98f 100644 --- a/src/Display.cpp +++ b/src/Display.cpp @@ -50,7 +50,7 @@ void Display::begin() { P.begin(); // P.setZoneEffect(0, true, PA_FLIP_LR); graphicDisplay = P.getGraphicObject(); - E.begin(graphicDisplay); + E.begin(graphicDisplay, 1); // start at 2nd module, count starts with 0 P.setIntensity(1); for (charCode=1; charCode<=9; ++charCode) { @@ -59,7 +59,7 @@ void Display::begin() { // replace the 0 characters, we do not like the "slash" P.addChar('0', newZero); - char intro[] = {':', '-', ')', ' ', 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x00}; + char intro[] = {' ', 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x00}; P.print(intro); }