Running into a weird issue trying to compile firmware for me ESP32-S3-BOX-3
when compile it errors out with the following
INFO ESPHome 2023.11.6
INFO Reading configuration /config/esphome/esp32-s3-box-3-5abaf4.yaml…
Failed configpackages: [source /config/esphome/esp32-s3-box-3-5abaf4.yaml:5]
Failed to load packages. voice-assistant/esp32-s3-box-3.yaml does not exist in repository.
esphome.voice-assistant: github://esphome/firmware/voice-assistant/esp32-s3-box-3.yaml@main
I know the file is on the github and in the right location.
I’m also able to pull and compile for my ESP32-S3-BOX no problem so I know my ESP home addon can hit the github.
I tested this in a separate instance of HA that I keep around for testing purposes and it’s able to compile for both devices no problem.
any ideas?
YAML for the ESP32-S3-BOX-3
substitutions:
name: esp32-s3-box-3-5abaf4
friendly_name: ESP32 S3 Box3
packages:
esphome.voice-assistant: github://esphome/firmware/voice-assistant/esp32-s3-box-3.yaml@main
esphome:
name: ${name}
name_add_mac_suffix: false
friendly_name: ${friendly_name}
api:
encryption:
key: !secret api_key
ota:
safe_mode: true
password: !secret ota_password
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ap:
ssid: "$friendly_name Fallback Hotspot"
password: !secret fallback_password
YAML for the ESP32-S3-BOX
substitutions:
name: esp32-s3-box-fd0efc
friendly_name: ESP32 S3 Box
packages:
esphome.voice-assistant: github://esphome/firmware/voice-assistant/esp32-s3-box.yaml@main
esphome:
name: ${name}
name_add_mac_suffix: false
friendly_name: ${friendly_name}
api:
encryption:
key: !secret api_key
ota:
safe_mode: true
password: !secret ota_password
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ap:
ssid: "$friendly_name Fallback Hotspot"
password: !secret fallback_password