Echo stopped discovering devices

I know this is an old topic, However alexa stopped discovering any new devices recently and I have tired everything I could find on the web to fix it without success. I’m using the manual Haaska setup that was working fine for the longest time and just recently stopped. I took out all mention of media from my Yaml file and disabled any media devices that I had with not success. Has anyone found a fix?

Are the various entities exposed to Alexa in Configuration | Home Assistant Cloud?

I have alexa media exposed, However I tried to delete that and still nothing

Here’s my Yaml Maybe i’m missing something

Configure a default setup of Home Assistant (frontend, api, etc)

default_config:

homeassistant:
packages: !include_dir_named packages/

Recorder for MariaDB

recorder:
purge_keep_days: 30
db_url: mysql://homeassistant:******@core-mariadb/homeassistant?charset=utf8

#themes
frontend:
themes: !include_dir_merge_named themes/

#Mode Boolean
input_boolean:
home_mode:
name: Home Mode
icon: mdi:home

http:
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem

#Alexa Integration
api:
alexa:
smart_home:

group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

alexa_media:
accounts:
- email: “**********”
password: !secret alexa_pw
url: amazon.com

#Sensors***********************************************************************************

#Power Meter
utility_meter:
daily_energy:
source: sensor.daily_kwh
cycle: daily
weekly_energy:
source: sensor.daily_kwh
cycle: weekly
monthly_energy:
source: sensor.daily_kwh
cycle: monthly

#Monthly Data
monthly_data_received:
source: sensor.bytes_total
cycle: monthly

#Energy Sensors
sensor:

  • platform: template
    sensors:
    daily_kwh:
    friendly_name: Daily kWh
    value_template: “{{ ‘%0.2f’|format (states(‘sensor.home_energy_meter_power’) | float * 0.001) }}”

  • platform: template
    sensors:
    daily_energy_cost:
    friendly_name: Daily Energy Cost
    unit_of_measurement: ‘$’
    icon_template: mdi:currency-usd
    value_template: “{{ ‘%0.2f’|format (states(‘sensor.daily_energy’) | float * 0.009) }}”

  • platform: template
    sensors:
    weekly_energy_cost:
    friendly_name: Weekly Energy Cost
    unit_of_measurement: ‘$’
    icon_template: mdi:currency-usd
    value_template: “{{ ‘%0.2f’|format (states(‘sensor.weekly_energy’) | float * 0.009) }}”

  • platform: template
    sensors:
    monthly_energy_cost:
    friendly_name: Monthly Energy Cost
    unit_of_measurement: ‘$’
    icon_template: mdi:currency-usd
    value_template: “{{ ‘%0.2f’|format (states(‘sensor.monthly_energy’) | float * 0.009) }}”

#Router Sensors

  • platform: template
    sensors:
    router_cpu:
    friendly_name: “Router CPU %”
    value_template: “{{ state_attr(‘binary_sensor.router_system_status’,‘cpu’) }}”

  • platform: template
    sensors:
    bytes_received:
    friendly_name: “Bytes Received”
    value_template: “{{ state_attr(‘binary_sensor.router_interface_eth0’,‘MBytes/ps (Received)’) | round(3) }}”

  • platform: template
    sensors:
    bytes_sent:
    friendly_name: “Bytes Sent”
    value_template: “{{ state_attr(‘binary_sensor.router_interface_eth0’,‘MBytes/ps (Sent)’) | round(3) }}”

  • platform: template
    sensors:
    download:
    friendly_name: “MB/s Download”
    value_template: “{{ (states(‘sensor.bytes_received’) | float * 8) }}”

  • platform: template
    sensors:
    upload:
    friendly_name: “MB/s Upload”
    value_template: “{{ (states(‘sensor.bytes_sent’) | float * 8) }}”

  • platform: template
    sensors:
    bytes_sent_total:
    friendly_name: “Bytes Sent Total”
    value_template: “{{ (state_attr(‘binary_sensor.router_interface_eth0’,‘MBytes (Sent)’)) }}”

  • platform: template
    sensors:
    bytes_received_total:
    friendly_name: “Bytes Received Total”
    value_template: “{{ (state_attr(‘binary_sensor.router_interface_eth0’,‘MBytes (Received)’)) }}”

  • platform: template
    sensors:
    bytes_total:
    friendly_name: “Bytes Total”
    value_template: “{{ states(‘sensor.bytes_received_total’) | float + states(‘sensor.bytes_sent_total’) | round(2) }}”

  • platform: template
    sensors:
    monthly_data:
    friendly_name: “Monthly Data”
    value_template: “{{ ‘%0.2f’|format (states(‘sensor.monthly_data_received’) | float * 0.001) }}”

#System Monitor

  • platform: systemmonitor
    resources:
    • type: disk_use_percent
      arg: /home
    • type: memory_free
    • type: last_boot
    • type: processor_temperature
    • type: processor_use
    • type: memory_use
    • type: disk_use
    • type: disk_free

#Weather Alerts

  • platform: weatheralerts
    state: PA
    zone: “020”
    county: “007”

#Rachio
panel_iframe:
rachio:
title: Rachio
url: “https://app.rach.io
icon: mdi:water-pump