From 6a3eb8f8ed5c332f36465cc1f63160b62c81439c Mon Sep 17 00:00:00 2001 From: hello-world-dot-c Date: Tue, 13 Oct 2020 12:19:37 +0200 Subject: [PATCH] Fixed typo --- tasmota/xdrv_24_buzzer.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_24_buzzer.ino b/tasmota/xdrv_24_buzzer.ino index 1f9e6d08c..8ca94b023 100644 --- a/tasmota/xdrv_24_buzzer.ino +++ b/tasmota/xdrv_24_buzzer.ino @@ -104,7 +104,7 @@ void BuzzerBeep(uint32_t count, uint32_t on, uint32_t off, uint32_t tune, uint32 if (Settings.sleep > PWM_MAX_SLEEP) { ssleep = PWM_MAX_SLEEP; // set a maxumum value of 10 milliseconds to ensure that buzzer periods are a bit more accurate } else { - ssleep = Settings.sleep; // or keep the current sleep if it's lower than 50 + ssleep = Settings.sleep; // or keep the current sleep if it's lower than 10 } } else {