Bluetooth Proxy HA Install API Timeout

Been trying for the last three weeks to create a bluetooth proxy from an ESP WROOM 32 to use in my HA.

Using the bluetooth ready made project to flash the ESP device, and then add to my HA. On my HA ESP Builder I see the device, it say it is “Online.” There is no “Adopt” option. I attempt to “Install.” Everything goes just fine, completes OTA upload.

When it attempts to start log output from the API I get a timeout error:

INFO ESPHome 2024.12.4
INFO Reading configuration /config/esphome/esp32-bluetooth-proxy-61b874.yaml…
INFO Generating C++ source…
INFO Updating https://github.com/espressif/[email protected]
INFO Compiling app…
Processing esp32-bluetooth-proxy-61b874 (board: esp32dev; framework: espidf; platform: GitHub - pioarduino/platform-espressif32: Espressif 32: pioarduino community platform compatible with PlatformIO)

c/protocol/symmetricstate.o
Compiling .pioenvs/esp32-bluetooth-proxy-61b874/lib8cd/noise-c/protocol/util.o
Archiving .pioenvs/esp32-bluetooth-proxy-61b874/lib8cd/libnoise-c.a
Linking .pioenvs/esp32-bluetooth-proxy-61b874/firmware.elf
RAM: [== ] 17.3% (used 56708 bytes from 327680 bytes)
Flash: [======= ] 74.0% (used 1358429 bytes from 1835008 bytes)
Building .pioenvs/esp32-bluetooth-proxy-61b874/firmware.bin
Creating esp32 image…
Successfully created esp32 image.
esp32_create_combined_bin([“.pioenvs/esp32-bluetooth-proxy-61b874/firmware.bin”], [“.pioenvs/esp32-bluetooth-proxy-61b874/firmware.elf”])
Wrote 0x15d410 bytes to file /data/build/esp32-bluetooth-proxy-61b874/.pioenvs/esp32-bluetooth-proxy-61b874/firmware.factory.bin, ready to flash to offset 0x0
esp32_copy_ota_bin([“.pioenvs/esp32-bluetooth-proxy-61b874/firmware.bin”], [“.pioenvs/esp32-bluetooth-proxy-61b874/firmware.elf”])
========================= [SUCCESS] Took 98.65 seconds =========================
INFO Successfully compiled program.
INFO Connecting to 192.168.0.147 port 3232…
INFO Connected to 192.168.0.147
INFO Uploading /data/build/esp32-bluetooth-proxy-61b874/.pioenvs/esp32-bluetooth-proxy-61b874/firmware.bin (1365008 bytes)
Uploading: [============================================================] 100% Done…

INFO Upload took 7.60 seconds, waiting for result…
INFO OTA successful
INFO Successfully uploaded program.
INFO Starting log output from 192.168.0.147 using esphome API
WARNING Can’t connect to ESPHome API for esp32-bluetooth-proxy-61b874 @ 192.168.0.147: Error connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address=‘192.168.0.147’, port=6053))]: [Errno 113] Connect call failed (‘192.168.0.147’, 6053) (SocketAPIError)
INFO Trying to connect to esp32-bluetooth-proxy-61b874 @ 192.168.0.147 in the background

I am just using a standard yaml:

 substitutions:
   name: esp32-bluetooth-proxy-61b874
   friendly_name: Bluetooth Proxy 61b874
 packages:
   esphome.bluetooth-proxy: github://esphome/bluetooth-proxies/esp32-generic/esp32-generic.yaml@main
 esphome:
   name: ${name}
   name_add_mac_suffix: false
   friendly_name: ${friendly_name}
 api:
   encryption:
     key: encryption key
 
 logger:
   level: NONE
 
 wifi:
   ssid: !secret wifi_ssid
   password: !secret wifi_password

Any help would be appreciated. Thanks