Updated dependencies.

This commit is contained in:
Joe Kearney 2026-02-07 16:06:20 -06:00
parent d86c494d45
commit 58748fcef1
101 changed files with 5845 additions and 2391 deletions

View file

@ -1,8 +1,8 @@
## IDF Component Manager Manifest File
dependencies:
chmorgan/esp-libhelix-mp3: "^1.0.3"
chmorgan/esp-audio-player: "^1.0.7"
espressif/button: "^3.5.0"
chmorgan/esp-audio-player: "^1.1.0"
espressif/button: "^4.1.5"
espressif/mdns: "^1.9.1"
espressif/usb_host_msc: "^1.1.4"

View file

@ -120,7 +120,10 @@ void app_main(void)
}
// Initialize the switches after SystemK, so xQueueEvents will have already been created.
Initialize_Switches();
if (Initialize_Switches() != ESP_OK)
{
KLOG_ERROR(TAG, "Error initializing the switches!");
}
KLOG_INFO(TAG, "Initialization complete.");
}