All Automations disappeared from GUI - replaced by 'automation 0'

Hi.
I am a Home Assistant Green user.
Core: 2024.6.2
Supervisor: 2024.06.0
Operating System: 12.3
Frontend: 20240610.0

Before I start explaining the problem I am running into, I should let you know that I am not an advanced user - although I have learned a bit of this and that. I would say I am a beginner-level or an intermediate-level user.

I recently ran into a problem one day when I wanted to create a new automation. I went to Settings > Automations & scenes > Automations, and all my automations are gone and only a single automation (one that I did not create) appeared.

I am not able to delete it from the GUI, but I succeeded in getting rid of previously using File Editor and messing with Automations.yaml.

I changed the name of the old yaml file from automations.yaml to automations.old, and proceeded with creating a new automations.yaml file. As soon as I did that and restarted the server, I started seeing automation 0 again. I also tried a complete reboot too.

There are multiple automations in my automations.yaml, some of which I want to use. How can I fix this?

I should also point out that we have frequent power outages and Home Assistant shuts down whenever there is an outage. I do not have any power backup for it yet.

automations.yaml, configuration.yaml, and Home Assistant Core logs are below:

Here is my automations.yaml:

automation:
  - id: '1715645362634'
    alias: Home Assistant not backed up
    description: ''
    trigger:
      - platform: state
        entity_id:
          - binary_sensor.backups_stale
        to: 'on'
    condition: []
    action:
      - service: notify.mobile_app_sufian_s_xrn12
        metadata: {}
        data:
          message: Home Assistant not backed up to Google Drive!
          title: HA Google Drive!
    mode: single

  - id: '1715874236087'
    alias: Turn on AC when Uncomfortable
    description: ''
    trigger:
      - type: temperature
        platform: device
        device_id: 43650d4f1e00f4e38bfa220339f4b6ac
        entity_id: 0ffa50c62167620cac12763c9c071218
        domain: sensor
        above: 30
      - type: humidity
        platform: device
        device_id: 43650d4f1e00f4e38bfa220339f4b6ac
        entity_id: 10ca6542bf9b03dbc15594f5de9ed0e5
        domain: sensor
        above: 55
    condition:
      - condition: time
        after: '23:00:00'
        before: '10:00:00'
        weekday:
          - sat
          - fri
          - thu
          - wed
          - tue
          - mon
          - sun
      - condition: zone
        entity_id: device_tracker.23021raaeg
        zone: zone.home
    action:
      - device_id: d6d8942e56b6abf8a9b6bb1a56bdbfb4
        domain: climate
        entity_id: 6d76f12abbcba2cdb9658f3af4a4dbbf
        type: set_hvac_mode
        hvac_mode: cool
      - device_id: d6d8942e56b6abf8a9b6bb1a56bdbfb4
        domain: number
        entity_id: 95af35d459a1c6ec4fa678c7a8cf03c0
        type: set_value
        value: 26
    mode: single

  - id: '1717262669824'
    alias: Notify for Energy Thresholds
    trigger:
      - platform: numeric_state
        entity_id: sensor.breaker_total_energy
        above: 200
      - platform: numeric_state
        entity_id: sensor.breaker_total_energy
        above: 290
      - platform: numeric_state
        entity_id: sensor.breaker_total_energy
        above: 390
    action:
      - choose:
          - conditions:
              - condition: numeric_state
                entity_id: sensor.breaker_total_energy
                above: 200
                below: 290
            sequence:
              - service: notify.mobile_app_sufian_s_xrn12
                data:
                  title: Electricity Consumption Alert!
                  message: 200 Units of Electricity Consumed.
          - conditions:
              - condition: numeric_state
                entity_id: sensor.breaker_total_energy
                above: 290
                below: 390
            sequence:
              - service: notify.mobile_app_sufian_s_xrn12
                data:
                  title: Electricity Consumption Alert!
                  message: 290 Units of Electricity Consumed.
          - conditions:
              - condition: numeric_state
                entity_id: sensor.breaker_total_energy
                above: 390
            sequence:
              - service: notify.mobile_app_sufian_s_xrn12
                data:
                  title: Electricity Consumption Alert!
                  message: 390 Units of Electricity Consumed.

  - id: '1717264244483'
    alias: Control Light when on Google Meet Call - Webhook
    trigger:
      - platform: webhook
        allowed_methods:
          - GET
          - HEAD
          - POST
        local_only: false
        webhook_id: meet-turn_on_light
        id: turn_on
      - platform: webhook
        allowed_methods:
          - GET
          - HEAD
          - POST
        local_only: false
        webhook_id: meet-turn_on_light
        id: turn_off
    condition: []
    action:
      - choose:
          - conditions:
              - condition: trigger
                id: turn_on
            sequence:
              - service: light.turn_on
                target:
                  entity_id: light.yeelink_color5_c0f3_light
                data:
                  brightness_pct: 100
                  color_name: red
          - conditions:
              - condition: trigger
                id: turn_off
            sequence:
              - service: light.turn_off
                target:
                  entity_id: light.yeelink_color5_c0f3_light
    mode: single

In case configuration.yaml helps:

# Loads default set of integrations. Do not remove.
default_config:

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

# Include other YAML files for organization
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

# Enable logbook and history
logbook:
history:

# Wake-on-LAN integration
wake_on_lan:

# Combine all switches under one switch key
switch:
  - platform: template
    switches:
      sufian_lt_toggle:
        friendly_name: "Sufian-LT Toggle"
        unique_id: "sufian-lt-toggle_01"
        value_template: "{{ is_state('binary_sensor.sufian_lt_ping', 'on') }}"
        turn_on:
          - service: wake_on_lan.send_magic_packet
            data:
              mac: "xx:xx:xx:xx:xx:xx"
          - service: switch.turn_on
            target:
              entity_id: switch.sufian_lt
        turn_off:
          service: hassio.addon_stdin
          data:
            addon: core_rpc_shutdown
            input: Sufian-LT

sensor:
  - platform: template
    sensors:
      uptime_seconds:
        friendly_name: "Uptime Seconds"
        value_template: >
          {% set uptime = states('sensor.uptime') %}
          {% if uptime not in ['unknown', 'unavailable'] %}
            {% set now = as_timestamp(now()) %}
            {% set uptime_timestamp = as_timestamp(uptime) %}
            {% set duration = now - uptime_timestamp %}
            {{ duration | int }}
          {% else %}
            0
          {% endif %}

      power_status:
        friendly_name: "Power Status"
        value_template: >
          {% if states('sensor.uptime_seconds') | int > 0 %}
            On
          {% else %}
            Off
          {% endif %}

Home Assistant Core Logs:

2024-06-14 13:14:47.865 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-06-14 13:14:47.869 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration xiaomi_miot which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-06-14 13:14:53.409 ERROR (MainThread) [homeassistant.components.automation] Unnamed automation could not be validated and has been disabled: extra keys not allowed @ data['automation']. Got [{'id': '1717262669824', 'alias': 'Notify for Energy Thresholds', 'trigger': [{'platform': 'numeric_state', 'entity_id': 'sensor.breaker_total_energy', 'above': 200}, {'platform': 'numeric_state', 'entity_id': 'sensor.breaker_total_energy', 'above': 290}, {'platform': 'numeric_state', 'entity_id': 'sensor.breaker_total_energy', 'above': 390}], 'action': [{'choose': [{'conditions': [{'condition': 'numeric_state', 'entity_id': 'sensor.breaker_total_energy', 'above': 200, 'below': 290}], 'sequen...
required key not provided @ data['action']. Got None
required key not provided @ data['trigger']. Got None
2024-06-14 13:14:59.885 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.components.frontend. This is deprecated and will stop working in Home Assistant 2024.9, it should be updated to import functions used from frontend directly at custom_components/hacs/frontend.py, line 68: hass.components.frontend.async_register_built_in_panel(, please create a bug report at https://github.com/hacs/integration/issues
2024-06-14 13:15:01.472 WARNING (SyncWorker_0) [miio.device] Found an unsupported model 'lumi.gateway.mgl001' for class 'Gateway'. If this is working for you, please open an issue at https://github.com/rytilahti/python-miio/
2024-06-14 13:15:07.842 WARNING (MainThread) [homeassistant.util.loop] Detected blocking call to open inside the event loop by custom integration 'xiaomi_miot' at custom_components/xiaomi_miot/__init__.py, line 208: with open(os.path.dirname(__file__) + '/core/miot_specs_extend.json') as file: (offender: /config/custom_components/xiaomi_miot/__init__.py, line 208: with open(os.path.dirname(__file__) + '/core/miot_specs_extend.json') as file:), please create a bug report at https://github.com/al-one/hass-xiaomi-miot/issues
Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "/usr/src/homeassistant/homeassistant/__main__.py", line 223, in <module>
    sys.exit(main())
  File "/usr/src/homeassistant/homeassistant/__main__.py", line 209, in main
    exit_code = runner.run(runtime_conf)
  File "/usr/src/homeassistant/homeassistant/runner.py", line 190, in run
    return loop.run_until_complete(setup_and_run_hass(runtime_config))
  File "/usr/local/lib/python3.12/asyncio/base_events.py", line 672, in run_until_complete
    self.run_forever()
  File "/usr/local/lib/python3.12/asyncio/base_events.py", line 639, in run_forever
    self._run_once()
  File "/usr/local/lib/python3.12/asyncio/base_events.py", line 1988, in _run_once
    handle._run()
  File "/usr/local/lib/python3.12/asyncio/events.py", line 88, in _run
    self._context.run(self._callback, *self._args)
  File "/usr/src/homeassistant/homeassistant/setup.py", line 165, in async_setup_component
    result = await _async_setup_component(hass, domain, config)
  File "/usr/src/homeassistant/homeassistant/setup.py", line 402, in _async_setup_component
    result = await task
  File "/config/custom_components/xiaomi_miot/__init__.py", line 208, in async_setup
    with open(os.path.dirname(__file__) + '/core/miot_specs_extend.json') as file:

2024-06-14 13:15:15.554 WARNING (MainThread) [homeassistant.components.climate] Entity xiaomi_miot.miir_ir02_0672_ir_aircondition_control (<class 'custom_components.xiaomi_miot.climate.MiirClimateEntity'>) does not set ClimateEntityFeature.TURN_OFF but implements the turn_off method. Please create a bug report at https://github.com/al-one/hass-xiaomi-miot/issues
2024-06-14 13:15:15.556 WARNING (MainThread) [homeassistant.components.climate] Entity xiaomi_miot.miir_ir02_0672_ir_aircondition_control (<class 'custom_components.xiaomi_miot.climate.MiirClimateEntity'>) does not set ClimateEntityFeature.TURN_ON but implements the turn_on method. Please create a bug report at https://github.com/al-one/hass-xiaomi-miot/issues
2024-06-14 13:15:15.557 WARNING (MainThread) [homeassistant.components.climate] Entity xiaomi_miot.miir_ir02_0672_ir_aircondition_control (<class 'custom_components.xiaomi_miot.climate.MiirClimateEntity'>) implements HVACMode(s): off, auto, cool, heat, dry, fan_only and therefore implicitly supports the turn_on/turn_off methods without setting the proper ClimateEntityFeature. Please create a bug report at https://github.com/al-one/hass-xiaomi-miot/issues
2024-06-14 13:15:21.542 WARNING (MainThread) [homeassistant.components.alarm_control_panel] Setup of alarm_control_panel platform xiaomi_miio is taking over 10 seconds.
2024-06-14 13:15:21.543 WARNING (MainThread) [homeassistant.components.light] Setup of light platform xiaomi_miio is taking over 10 seconds.
2024-06-14 13:15:27.144 ERROR (SyncWorker_1) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:15:27.148 ERROR (MainThread) [homeassistant.components.light] xiaomi_miio: Error on device update!
Traceback (most recent call last):
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 214, in send
    self._handle_error(payload["error"])
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 274, in _handle_error
    raise RecoverableError(error)
miio.exceptions.RecoverableError: {'code': -9999, 'message': 'user ack timeout'}

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 214, in send
    self._handle_error(payload["error"])
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 274, in _handle_error
    raise RecoverableError(error)
miio.exceptions.RecoverableError: {'code': -9999, 'message': 'user ack timeout'}

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 214, in send
    self._handle_error(payload["error"])
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 274, in _handle_error
    raise RecoverableError(error)
miio.exceptions.RecoverableError: {'code': -9999, 'message': 'user ack timeout'}

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 214, in send
    self._handle_error(payload["error"])
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 274, in _handle_error
    raise RecoverableError(error)
miio.exceptions.RecoverableError: {'code': -9999, 'message': 'user ack timeout'}

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 729, in _async_add_entity
    await entity.async_device_update(warning=False)
  File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 1289, in async_device_update
    await self.async_update()
  File "/usr/src/homeassistant/homeassistant/components/xiaomi_miio/light.py", line 1034, in async_update
    state_dict = await self.hass.async_add_executor_job(
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/miio/gateway/light.py", line 39, in rgb_status
    state_int = self._gateway.send("get_rgb").pop()
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/miio/device.py", line 107, in send
    return self._protocol.send(
           ^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 248, in send
    return self.send(
           ^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 248, in send
    return self.send(
           ^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 248, in send
    return self.send(
           ^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/miio/miioprotocol.py", line 256, in send
    raise DeviceException("Unable to recover failed command") from ex
miio.exceptions.DeviceException: Unable to recover failed command
2024-06-14 13:15:27.171 ERROR (SyncWorker_0) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:15:27.263 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.helpers.event. This is deprecated and will stop working in Home Assistant 2024.11, it should be updated to import functions used from event directly at custom_components/hacs/base.py, line 630: self.hass.helpers.event.async_track_time_interval(, please create a bug report at https://github.com/hacs/integration/issues
2024-06-14 13:15:51.041 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:15:57.156 ERROR (SyncWorker_6) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:16:07.180 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:16:13.251 ERROR (SyncWorker_2) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:16:16.162 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for esp32-1 @ 192.168.0.102: Timeout while connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address='192.168.0.102', port=6053))] (TimeoutAPIError)
2024-06-14 13:16:21.045 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:16:27.107 ERROR (SyncWorker_6) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:16:37.181 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:16:43.243 ERROR (SyncWorker_8) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:16:51.046 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:16:57.140 ERROR (SyncWorker_2) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:17:07.182 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:17:14.294 ERROR (SyncWorker_13) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:17:21.047 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:17:27.113 ERROR (SyncWorker_10) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:17:37.183 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:17:44.313 ERROR (SyncWorker_16) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:17:51.046 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:17:57.142 ERROR (SyncWorker_5) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:18:07.183 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:18:13.269 ERROR (SyncWorker_17) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:18:21.048 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:18:27.173 ERROR (SyncWorker_18) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:18:37.184 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:18:43.274 ERROR (SyncWorker_0) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:18:51.050 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:18:57.136 ERROR (SyncWorker_17) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:19:07.185 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:19:13.255 ERROR (SyncWorker_23) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:19:21.051 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:19:27.115 ERROR (SyncWorker_7) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:19:37.186 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:19:43.256 ERROR (SyncWorker_13) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:19:51.052 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:19:57.157 ERROR (SyncWorker_25) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:20:07.187 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:20:13.258 ERROR (SyncWorker_17) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:20:21.054 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:20:27.119 ERROR (SyncWorker_5) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:20:37.188 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:20:43.259 ERROR (SyncWorker_30) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:20:51.054 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:20:57.139 ERROR (SyncWorker_9) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:21:07.188 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:21:13.259 ERROR (SyncWorker_19) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:21:21.055 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:21:27.159 ERROR (SyncWorker_31) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:21:37.189 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds
2024-06-14 13:21:43.269 ERROR (SyncWorker_10) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:21:51.056 WARNING (MainThread) [homeassistant.helpers.entity] Update of sensor.xiaomi_smart_home_hub_2_illuminance is taking over 10 seconds
2024-06-14 13:21:57.148 ERROR (SyncWorker_6) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-06-14 13:22:07.190 WARNING (MainThread) [homeassistant.helpers.entity] Update of alarm_control_panel.xiaomi_smart_home_hub_2_alarm is taking over 10 seconds