Update OLED.cpp

The Idle Screen is now the MMDVM logo scrolling through the whole screen as a Screensaver.
This commit is contained in:
M0IEI
2017-08-09 20:37:48 +01:00
committed by GitHub
parent bfd207da58
commit 59d047771f

View File

@@ -155,12 +155,12 @@ void COLED::setIdleInt()
display.clearDisplay(); display.clearDisplay();
OLED_statusbar(); OLED_statusbar();
display.setCursor(0,30); // display.setCursor(0,30);
display.setTextSize(3); // display.setTextSize(3);
display.print("Idle"); // display.print("Idle");
display.setTextSize(1); // display.setTextSize(1);
display.startscrollleft(0x02,0x0f); display.startscrolldiagright(0x00,0x0f); //the log scrolls the whole screen
display.display(); display.display();
} }