Cant' export Koogeek smartplug back to Home app

I successfully paired a Koogeek Wifi Smartplug (that was previously paired with Siri) with Home Assistant.

But I can’t export it back to Siri. I can see all other switches and sensors in Home app, but not the Koogeek Smartplug.

My config:

discovery:
  enable:
    - homekit

homekit:
  filter:
    include_domains:
      - switch
      - climate
      - sensor
      - binary_sensor
    include_entities:
      - media_player.arbeitszimmer
      - media_player.kueche
      - media_player.wohnzimmer
  entity_config:
    media_player.arbeitszimmer:
      feature_list:
        - feature: play_pause
    media_player.kueche:
      feature_list:
        - feature: play_pause
    media_player.wohnzimmer:
      feature_list:
        - feature: play_pause

What am I doing wrong?

1 Like

I answer my own question – the homekit component obviously doesn’t work with Koogeek accessories. My workaround is an extra switch:

- platform: template
  switches:
    espressomaschine:
      value_template: "{{ is_state('switch.koogeek_p1_c9278b', 'on') }}"
      turn_on:
        service: homeassistant.turn_on
        entity_id: switch.koogeek_p1_c9278b
      turn_off:
        service: homeassistant.turn_off
        entity_id: switch.koogeek_p1_c9278b

You have to delay the HomeKit start. The plugs need some time to be found at start. Its described under homekit component.

Thank you, a 2 minute delay did the trick!