From f7f2a84fbf55f4d3ea43dbc9e6af50f21ab72eb6 Mon Sep 17 00:00:00 2001 From: Kevin Ahrendt Date: Thu, 24 Oct 2024 19:25:25 +0000 Subject: [PATCH] add audio library dependency --- esphome/components/nabu/media_player.py | 2 +- platformio.ini | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/components/nabu/media_player.py b/esphome/components/nabu/media_player.py index 23b8eeeee8..efe51bffac 100644 --- a/esphome/components/nabu/media_player.py +++ b/esphome/components/nabu/media_player.py @@ -223,7 +223,7 @@ FINAL_VALIDATE_SCHEMA = _supported_local_file_validate async def to_code(config): - cg.add_library("https://github.com/esphome/esp-audio-libs", "1.0.0") + cg.add_library("esphome/esp-audio-libs", "1.0.0") # Wifi settings based on https://github.com/espressif/esp-adf/issues/297#issuecomment-783811702 esp32.add_idf_sdkconfig_option("CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM", 16) diff --git a/platformio.ini b/platformio.ini index 04afc059af..0eb8097720 100644 --- a/platformio.ini +++ b/platformio.ini @@ -146,6 +146,7 @@ lib_deps = ${common:idf.lib_deps} droscy/esp_wireguard@0.4.2 ; wireguard kahrendt/ESPMicroSpeechFeatures@1.1.0 ; micro_wake_word + esphome/esp-audio-libs@1.0.0 ; nabu build_flags = ${common:idf.build_flags} -Wno-nonnull-compare