Automation and switches stopped working

Hi,

Since a couple of weeks my automation and switches of my RFXTRX switches stopped working.
When I try to turn on or off an individual light or the group with my lights, I get this error:

Failed to call light/turn_off. write failed: [Errno 5] I/O error
or
Failed to call homeassistant/turn_off. write failed: [Errno 5] I/O error

This is from my condiguration.yaml:

rfxtrx:
  device: /dev/ttyUSB0

light:
  - platform: rfxtrx
    automatic_add: true
    devices:
      071001054d010070:
        name: Spots boekenkast
      0b1100000029a00004000060:
        name: Staande lamp
      0b11000000247e760b010f50:
        name: onbekend
      0b1100000029a00002000060:
        name: Leeslamp bank
      0b1100000029a00003000040:
        name: Klemspot pilaar
      071001044d030060:
        name: Spots tuindeur

and my automations.yaml:

- id: '1552256573830'
  alias: Lichten aan vóór zonsondergang
  trigger:
  - event: sunset
   # offset: -00:35:00
    platform: sun
  condition: []
  action:
  - alias: ''
    data: {}
    entity_id: light.color_temperature_light_1
    service: light.turn_on
  - entity_id: light.staande_lamp
    service: light.turn_on
  - entity_id: light.klemspot_pilaar
    service: light.turn_on
  - entity_id: light.leeslamp_bank
    service: light.turn_on
  - entity_id: light.spots_boekenkast
    service: light.turn_on
  - entity_id: light.spots_tuindeur
    service: light.turn_on
- id: '1556817416817'
  alias: Lichten uit
  description: Lichten in de huiskamer
  trigger:
  - at: '22:30:00'
    platform: time
  - at: 08:10
    platform: time
  condition: []
  action:
  - entity_id: light.color_temperature_light_1
    service: light.turn_off
  - entity_id: light.staande_lamp
    service: light.turn_off
  - entity_id: light.klemspot_pilaar
    service: light.turn_off
  - entity_id: light.leeslamp_bank
    service: light.turn_off
  - entity_id: light.spots_boekenkast
    service: light.turn_off
  - entity_id: light.spots_tuindeur
    service: light.turn_off
- id: '1578853150225'
  alias: Turn off the lights when I leave home
  description: ''
  trigger:
  - entity_id: person.roel_neumann
    event: leave
    platform: zone
    zone: zone.home
  condition: []
  action:
  - device_id: 447e7038de8f40a193c495a096276ab6
    domain: light
    entity_id: light.color_temperature_light_1
    type: turn_off

I have one Zigbee switch in my automation through deConz, which still is working.

I’d like to know why this stopped working, although I didn’t change anything, other than updating Hassio.
Present version is 0.109.6

I’ll be very grateful for any advice.

Regards,
Roel

Solved.

I checked the log (tip from someone in Discord), and it pointed to a troublesome HACS integration.
After I updated all HACS integrations (3), and restarted HA, the rfxtrx devices worked again.

Don’t ask me what the mechanism behind this is, but I’m glad it is solved.