From 8e119129bec8d5681a2d2669a614acd5408f86b7 Mon Sep 17 00:00:00 2001 From: Noah Axon Date: Sun, 7 Jan 2024 23:36:20 -0600 Subject: [PATCH] version bump and fix eeprom reset screen --- m5stick-nemo.ino | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/m5stick-nemo.ino b/m5stick-nemo.ino index 1fed7fe..2a16012 100644 --- a/m5stick-nemo.ino +++ b/m5stick-nemo.ino @@ -8,7 +8,7 @@ //#define CARDPUTER // -=-=- Uncommenting more than one at a time will result in errors -=-=- -String buildver="2.3.1"; +String buildver="2.3.2"; #define BGCOLOR BLACK #define FGCOLOR GREEN @@ -491,10 +491,13 @@ void clearSettings(){ EEPROM.commit(); #endif screenBrightness(100); - DISP.fillScreen(BGCOLOR); + DISP.fillScreen(BLUE); DISP.setTextSize(BIG_TEXT); + DISP.setRotation(1); + DISP.setTextColor(BLUE, WHITE); DISP.setCursor(40, 0); DISP.println("M5-NEMO"); + DISP.setTextColor(WHITE, BLUE); DISP.setTextSize(SMALL_TEXT); DISP.println("Restoring Default\nSettings..."); delay(5000);