I have 7 esphome devices to control lights around my house. All working great except one, that after a reboot doesn’t connect to hassio anymore.
It works fine in esphome, I can connect to the webpage on the ip, but in hassio it’s offline
All devices are running on esp01
This is the code
esphome:
name: muurlampen
platform: ESP8266
board: esp01_1m
wifi:
ssid: "TomatoRAF2"
password: "Peugeot207"
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "muurlampen"
password: "LXFVYGxpMJBt"
captive_portal:
# Enable logging
logger:
# Enable Home Assistant API
api:
ota:
web_server:
port: 80
# Sync time with Home Assistant.
time:
- platform: homeassistant
id: homeassistant_time
# Text sensors with general information.
text_sensor:
# Expose ESPHome version as sensor.
- platform: version
name: muurlampen ESPHome Version
# Expose WiFi information as sensors.
- platform: wifi_info
ip_address:
name: muurlampen IP
ssid:
name: muurlampen lampen SSID
bssid:
name: muurlampen lampen BSSID
# Sensors with general information.
sensor:
# Uptime sensor.
- platform: uptime
name: muulampen Uptime
# WiFi Signal sensor.
- platform: wifi_signal
name: muurlampen WiFi Signal
update_interval: 60s
output:
- platform: esp8266_pwm
pin: 0
frequency: 1000Hz
id: LED_gpio_00
- platform: esp8266_pwm
pin: 2
frequency: 1000Hz
id: LED_gpio_02
light:
- platform: monochromatic
name: "muurlampen kanaal 1"
default_transition_length: 2s
output: LED_gpio_00
- platform: monochromatic
name: "muurlampen kanaal 2"
default_transition_length: 2s
output: LED_gpio_02
So, basically everything works, except the connection to HA