Adjust beeping

Tested on actual hardware.
- adjust count and duration of beeps
This commit is contained in:
jonny_l480
2024-02-21 14:23:07 +01:00
parent cdfa64fbc0
commit 0672d08cb8
5 changed files with 18 additions and 12 deletions

View File

@@ -82,7 +82,7 @@ void buzzer_t::processQueue(){
// otherwise waits for at least 7 weeks
if( xQueueReceive( beepQueue, &entryRead, portMAX_DELAY ) )
{
ESP_LOGW(TAG_BUZZER, "Read entry from queue: count=%d, msOn=%d, msOff=%d", entryRead.count, entryRead.msOn, entryRead.msOff);
ESP_LOGI(TAG_BUZZER, "Read entry from queue: count=%d, msOn=%d, msOff=%d", entryRead.count, entryRead.msOn, entryRead.msOff);
//beep requested count with requested delays
for (int i = entryRead.count; i--;){