Hello!
I flashed an ESP32 and adopted it in HA ESPHome:
substitutions:
name: "esp32-test"
friendly_name: "ESP32 Test"
esphome:
name: ${name}
friendly_name: ${friendly_name}
min_version: 2024.6.0
name_add_mac_suffix: true
project:
name: 7wells.test
version: 1.0.0
esp32:
board: az-delivery-devkit-v4
framework:
type: arduino
version: recommended
logger:
level: DEBUG
api:
ota:
- platform: esphome
wifi:
ssid: !secret router_ssid
password: !secret router_password
manual_ip:
static_ip: 192.168.11.3
gateway: 192.168.11.1
subnet: 255.255.255.0
dns1: 192.168.11.1
dns2: 192.168.11.1
ap:
ap_timeout: 1min
ssid: ${friendly_name}
password: !secret esp32_test_ap_password
manual_ip:
static_ip: 192.168.11.3
gateway: 192.168.11.1
subnet: 255.255.255.0
dns1: 192.168.11.1
dns2: 192.168.11.1
captive_portal:
improv_serial:
esp32_improv:
authorizer: none
web_server:
port: 80
local: true
version: 2
include_internal: true
ota: off
auth:
username: !secret web_username
password: !secret web_password
It puzzles me that it still appears as ONLINE
despite I disconnected the ESP32 from power, also after HA restart. Is this a known issue? What might I be missing? There is nothing in HA’s protocol.
Thanks for pointing me into the right direction!
Kind regards
7wells