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();
OLED_statusbar();
display.setCursor(0,30);
display.setTextSize(3);
display.print("Idle");
// display.setCursor(0,30);
// display.setTextSize(3);
// display.print("Idle");
display.setTextSize(1);
display.startscrollleft(0x02,0x0f);
// display.setTextSize(1);
display.startscrolldiagright(0x00,0x0f); //the log scrolls the whole screen
display.display();
}