From f649a14811143064680af68a3b753d443c10a374 Mon Sep 17 00:00:00 2001 From: RaffaelW Date: Sun, 16 Feb 2025 21:22:10 +0100 Subject: [PATCH] added empty case for completeness --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 81e1c87..9204603 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -109,6 +109,9 @@ void onButtonPress() case Restart: ESP.restart(); break; + case None: + // do nothing + break; } }