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); }