From 59d047771f7bda1d98784d48ec626c382e30a093 Mon Sep 17 00:00:00 2001 From: M0IEI Date: Wed, 9 Aug 2017 20:37:48 +0100 Subject: [PATCH 1/2] Update OLED.cpp The Idle Screen is now the MMDVM logo scrolling through the whole screen as a Screensaver. --- OLED.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/OLED.cpp b/OLED.cpp index 3aab463..4e6d356 100644 --- a/OLED.cpp +++ b/OLED.cpp @@ -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(); } From a51fd933a475759e777c3d60ee66966d6456486e Mon Sep 17 00:00:00 2001 From: M0IEI Date: Wed, 9 Aug 2017 20:39:12 +0100 Subject: [PATCH 2/2] Update OLED.cpp --- OLED.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OLED.cpp b/OLED.cpp index 4e6d356..df1fd04 100644 --- a/OLED.cpp +++ b/OLED.cpp @@ -160,7 +160,7 @@ void COLED::setIdleInt() // display.print("Idle"); // display.setTextSize(1); - display.startscrolldiagright(0x00,0x0f); //the log scrolls the whole screen + display.startscrolldiagright(0x00,0x0f); //the MMDVM logo scrolls the whole screen display.display(); }