Blackymas / NSPanel_HA_Blueprint

This allows you to configure your complete NSPanel via Blueprint with UI and without changing anything in the code
1.44k stars 258 forks source link

TFT upload doesn't work #1337

Closed Sissi91 closed 11 months ago

Sissi91 commented 11 months ago

I tried to put what you recommend on issue #1326 but no succesful for me. So my Esp config file is: `substitutions:

CHANGE ME START

device_name: "esphomepanel" wifi_ssid: "xxx" wifi_password: "xxx"

nextion_update_url: "https://homeassistant.local:8123/local/nspanel_eu.tft"

addon-configuration

addon_climate

addon_climate_heater_relay: "1" # possible values: 1/2

CHANGE ME END

packages: remote_package: url: https://github.com/Blackymas/NSPanel_HA_Blueprint logs_esphome_run.txt

ref: main
files:
  - nspanel_esphome.yaml # Core package
  # - nspanel_esphome_addon_climate_cool.yaml # activate for local climate (cooling) control
  # - nspanel_esphome_addon_climate_heat.yaml # activate for local climate (heater) control
refresh: 300s
My customization - Start

esp32: framework: type: esp-idf

external_components:

time:

edwardtfn commented 11 months ago

Please try changing the upload url from HTTPS to HTTP, as the httpS is known to be problematic with ESP and Nextion upload.

nextion_update_url: "http://homeassistant.local:8123/local/nspanel_eu.tft"

Sissi91 commented 11 months ago

this solved the problem! thank you