Esphome device not appearing on hassio

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

log:

INFO Reading configuration /config/esphome/muurlampen.yaml...
INFO Detected timezone 'CET' with UTC offset 1 and daylight savings time from 28 March 02:00:00 to 31 October 03:00:00
INFO Starting log output from 192.168.1.75 using esphome API
INFO Connecting to 192.168.1.75:6053 (192.168.1.75)
INFO Successfully connected to 192.168.1.75
[16:56:33][I][app:105]: ESPHome version 1.16.0-dev compiled on Sep 13 2020, 16:49:36
[16:56:33][C][wifi:443]: WiFi:
[16:56:33][C][wifi:303]:   SSID: [redacted]
[16:56:33][C][wifi:304]:   IP Address: 192.168.1.75
[16:56:33][C][wifi:306]:   BSSID: [redacted]
[16:56:33][C][wifi:307]:   Hostname: 'muurlampen'
[16:56:33][C][wifi:311]:   Signal strength: -52 dB ▂▄▆█
[16:56:33][C][wifi:315]:   Channel: 1
[16:56:33][C][wifi:316]:   Subnet: 255.255.255.0
[16:56:33][C][wifi:317]:   Gateway: 192.168.1.1
[16:56:33][C][wifi:318]:   DNS1: (IP unset)
[16:56:33][C][wifi:319]:   DNS2: (IP unset)
[16:56:33][C][uptime.sensor:030]: Uptime Sensor 'muulampen Uptime'
[16:56:33][C][uptime.sensor:030]:   Unit of Measurement: 's'
[16:56:33][C][uptime.sensor:030]:   Accuracy Decimals: 0
[16:56:33][C][uptime.sensor:030]:   Icon: 'mdi:timer-outline'
[16:56:33][C][esp8266_pwm:022]: ESP8266 PWM:
[16:56:33][C][esp8266_pwm:023]:   Pin: GPIO0 (Mode: OUTPUT)
[16:56:33][C][esp8266_pwm:024]:   Frequency: 1000.0 Hz
[16:56:33][C][esp8266_pwm:022]: ESP8266 PWM:
[16:56:33][C][esp8266_pwm:023]:   Pin: GPIO2 (Mode: OUTPUT)
[16:56:33][C][esp8266_pwm:024]:   Frequency: 1000.0 Hz
[16:56:33][C][logger:185]: Logger:
[16:56:33][C][logger:186]:   Level: DEBUG
[16:56:33][C][logger:187]:   Log Baud Rate: 115200
[16:56:33][C][logger:188]:   Hardware UART: UART0
[16:56:33][C][light:177]: Light 'muurlampen kanaal 1'
[16:56:33][C][light:179]:   Default Transition Length: 2.0s
[16:56:33][C][light:180]:   Gamma Correct: 2.80
[16:56:33][C][light:177]: Light 'muurlampen kanaal 2'
[16:56:33][C][light:179]:   Default Transition Length: 2.0s
[16:56:33][C][light:180]:   Gamma Correct: 2.80
[16:56:33][C][homeassistant.time:010]: Home Assistant Time:
[16:56:33][C][homeassistant.time:011]:   Timezone: 'CET-1CEST-2,M3.4.0/2,M10.5.0/3'
[16:56:33][C][version.text_sensor:021]: Version Text Sensor 'muurlampen ESPHome Version'
[16:56:33][C][version.text_sensor:021]:   Icon: 'mdi:new-box'
[16:56:33][C][captive_portal:169]: Captive Portal:
[16:56:33][C][web_server:131]: Web Server:
[16:56:33][C][web_server:132]:   Address: 192.168.1.75:80
[16:56:33][C][ota:029]: Over-The-Air Updates:
[16:56:33][C][ota:030]:   Address: 192.168.1.75:8266
[16:56:33][C][api:095]: API Server:
[16:56:33][C][api:096]:   Address: 192.168.1.75:6053
[16:56:33][C][wifi_info:009]: WifiInfo IPAddress 'muurlampen IP'
[16:56:33][C][wifi_signal.sensor:009]: WiFi Signal 'muurlampen WiFi Signal'
[16:56:33][C][wifi_signal.sensor:009]:   Unit of Measurement: 'dB'
[16:56:33][C][wifi_signal.sensor:009]:   Accuracy Decimals: 0
[16:56:33][C][wifi_signal.sensor:009]:   Icon: 'mdi:wifi'
[16:56:33][C][wifi_info:010]: WifiInfo SSID 'muurlampen lampen SSID'
[16:56:34][C][wifi_info:011]: WifiInfo BSSID 'muurlampen lampen BSSID'
[16:57:12][D][sensor:092]: 'muurlampen WiFi Signal': Sending state -52.00000 dB with 0 decimals of accuracy
[16:57:13][D][sensor:092]: 'muulampen Uptime': Sending state 53.46900 s with 0 decimals of accuracy
[16:57:32][D][light:264]: 'muurlampen kanaal 1' Setting:
[16:57:32][D][light:273]:   State: ON
[16:57:32][D][light:303]:   Transition Length: 2.0s
[16:57:33][D][light:264]: 'muurlampen kanaal 2' Setting:
[16:57:33][D][light:273]:   State: ON
[16:57:33][D][light:303]:   Transition Length: 2.0s
[16:57:36][D][light:264]: 'muurlampen kanaal 1' Setting:
[16:57:36][D][light:273]:   State: OFF
[16:57:36][D][light:303]:   Transition Length: 2.0s
[16:57:36][D][light:264]: 'muurlampen kanaal 2' Setting:
[16:57:37][D][light:273]:   State: OFF
[16:57:37][D][light:303]:   Transition Length: 2.0s
[16:58:12][D][sensor:092]: 'muurlampen WiFi Signal': Sending state -51.00000 dB with 0 decimals of accuracy
[16:58:13][D][sensor:092]: 'muulampen Uptime': Sending state 113.46300 s with 0 decimals of accuracy
[16:58:20][I][ota:046]: Boot seems successful, resetting boot loop counter.