From 322133740467c80b094144bce93cac00980cb7b0 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Thu, 23 Nov 2023 10:44:01 +0100 Subject: [PATCH] Fixed problem when changing mode when memory store is active. --- TEF6686_ESP32.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index cac961b..bee3e94 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -1816,6 +1816,7 @@ void ModeButtonPress() { } else { if (!menu) { seek = false; + memorystore = false; unsigned long counterold = millis(); unsigned long counter = millis(); while (digitalRead(MODEBUTTON) == LOW && counter - counterold <= 1000) counter = millis();