ESP-Home file won't compile

I get this error now.

INFO ESPHome 2025.7.5
INFO Reading configuration /config/esphome/pos.yaml...
INFO Generating C++ source...
INFO Compiling app...
Processing pos (board: esp32-s3-devkitc-1; framework: espidf; platform: https://github.com/pioarduino/platform-espressif32/releases/download/53.03.13/platform-espressif32.zip)
--------------------------------------------------------------------------------
MissingPackageManifestError: Could not find one of 'package.json' manifest files in the package

First time I tried it stopped on some unpack/install part and just didn’t do nothing.
So I pressed retry and now I get this error each time.
I have tried to restart the esp addon.

This is the yaml it is trying to compile on a guition lvlg display.

esphome:
  name: pos
  friendly_name: pos
  platformio_options:
    board_build.flash_mode: dio

esp32:
  board: esp32-s3-devkitc-1
  variant: esp32s3
  flash_size: 16MB
  framework:
    type: esp-idf
    sdkconfig_options:
      COMPILER_OPTIMIZATION_SIZE: y
      CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240: "y"
      CONFIG_ESP32S3_DATA_CACHE_64KB: "y"
      CONFIG_ESP32S3_DATA_CACHE_LINE_64B: "y"
      CONFIG_SPIRAM_FETCH_INSTRUCTIONS: y
      CONFIG_SPIRAM_RODATA: y

psram:
  mode: octal
  speed: 80MHz

usb_uart:
  - type: cp210x
    channels:
      - id: uch_1
        baud_rate: 9600
        buffer_size: 1024

        
# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "ln7svk1Csrg1nsZhzpiJDybob+MJpE0PsJjGO68gYyA="

ota:
  - platform: esphome
    password: "c660977f5099bbfe0627b50975189b1c"



wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Pos Fallback Hotspot"
    password: "vuwXrlxLS0eo"

captive_portal:
    

I have removed a lot of the LVGL stuff just to focus on the USB UART.
I want to get one thing working then I continue with the rest.

But what can I do to get this working.
Other devices can be installed.
It’s just this one I get the error on, but also just this one that has USB UART.
So… Could be…

Edit, I have also tried the clean build.

Edit 2; I can’t compile a new device either.

Remove encryption keys and passwords from your post

Try “clean build files” in esphome
3vertical dots next to yaml files

Already done, as I wrote in the post.

uninstall the ESPHome addon and reinstall. Something is not right with your installation.

2 Likes

That seems to be working.
Thanks.
Always nervous when removing something, but it worked just fine to uninstall and reinstall again.
Everything was still there and all devices seems to be working.

1 Like

The ESPHome Builder is only used for compiling the firmware.
The connection to HA is done through the integration,which is independent from ESPHome Builder.