diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index 40b78df..00b9397 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -854,7 +854,9 @@ void ButtonPress() { if (counter - counterold < 1000) { if (tunemode == 0) { stepsize++; - if (stepsize > 4) stepsize = 0; + if (band == BAND_SW || band == BAND_FM) { if (stepsize > 4) stepsize = 0; } + else { if (stepsize > 3) stepsize = 0; } + if (screenmute == false) ShowStepSize(); EEPROM.writeByte(40, stepsize);