Future<void> decreaseFrequency({double step = 1}) async { double newFreq = currentFreq.value - step; if(newFreq > 0) await setFrequency(newFreq); }