Hallo Freunde heute wurden mir Updates angezeigt doch leider bekomme ich bei der Durchführung eine Fehlermeldung. Das hatte ich noch nie. Was kann man tun?
Installieren — Schlafzimmer
INFO ESPHome 2026.7.1
INFO Reading configuration /config/esphome/esp32-bluetooth-proxy-854210.yaml...
Failed config
packages: [source /config/esphome/esp32-bluetooth-proxy-854210.yaml:5]
bluetooth-proxy/esp32-generic.yaml does not exist in repository.
esphome.bluetooth-proxy: github://esphome/firmware/bluetooth-proxy/esp32-generic.yaml@main
Gruß OSR
Update: Dank ChatGPT habe ich das Problem gelöst. Zwei wege waren zwar erst falsch aber der Dritte war dann der richtige. ChatGPT hat sich sogar entschuldigt.
Gruß OSR
1 „Gefällt mir“
Was war die lösung für das Problem?
JutPie
23. Juli 2026 um 13:25
3
Bei mir lag es daran, dass die Ordnerstruktur für das Update der Repo nicht mit der hinterlegten auf dem ESP passte. Wurde in der Repo scheinbar angepasst.
alt
packages:
esphome.bluetooth-proxy: github://esphome/bluetooth-proxies/esp32-generic.yaml@main
neu:
packages:
esphome.bluetooth-proxy: github://esphome/bluetooth-proxies/esp32-generic/esp32-generic.yaml@main
Kann über das ESP Home Dashboard (ESP Home Devcie Builder) bearbeitet werden.
genau das was @JutPie geschrieben hat. Mit Chat GPT war das kein Problem falls du dir unsicher bist.
Baxxy
23. Juli 2026 um 17:20
5
Es gab dazu auch ein (inzwischen geschlossenes) Ticket im esphome - Repo:
offen 07:35AM - 23 Jul 26 UTC
geschlossen 03:33PM - 23 Jul 26 UTC
### The problem
I am trying to update my devices to the latest version in ESPHo… me but I have this error in my yaml file: bluetooth-proxy/esp32-generic.yaml does not exist in repository.
### Which version of ESPHome has the issue?
2026.7.2
### What type of installation are you using?
Home Assistant Add-on
### What platform are you using?
ESP32
### Component causing the issue
package
### YAML Config
```yaml
substitutions:
name: bt-proxy-01
friendly_name: BT-Proxy-01
ip_address:
ip_gateway:
ip_subnet:
packages:
esphome.bluetooth-proxy: github://esphome/firmware/bluetooth-proxy/esp32-generic.yaml@main
esphome:
name: ${name}
name_add_mac_suffix: false
friendly_name: ${friendly_name}
esp32:
board: esp32dev
framework:
type: esp-idf
api:
encryption:
key:
custom_services: true
homeassistant_services: true
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
manual_ip:
static_ip: ${ip_address}
gateway: ${ip_gateway}
subnet: ${ip_subnet}
# In your ESPHome YAML configuration file for the Bluetooth proxy
button:
- platform: restart
name: "Reboot" # Name will appear in Home Assistant
ble_adv_proxy:
use_max_tx_power: true # see below, remove in case of build issues
# The 'adapter_name' option should be added ONLY if you want the adapter to have
# a different name from the device (esphome.name)
# If you change the adapter_name, your ble_adv integrations using it will stop working
# and will require you to update the reconfiguring -> Technical Parameters (see ha-ble-adv doc)
# The name MUST be unique for HA: if you have several proxies linked to a HA instance,
# they MUST all have different names
# adapter_name: esp-proxy
external_components:
source: github://NicoIIT/esphome-ble_adv_proxy
#esp32_ble_tracker:
# scan_parameters:
# window: 20ms
# interval: 20ms
esp32_ble_beacon:
type: iBeacon
uuid: fde3b150-2f64-43ba-aee9-867f75ee4a6f
major: 1
minor: ${ ip_address.split('.')[3] | int }
min_interval: 500ms
max_interval: 1000ms
```
### Anything in the logs that might be useful for us?
```txt
```
### Additional information
_No response_