I am trying to get one temperature sensor (not all of them) to be shown on Homekit.
I try to do following:
filter:
include_domains:
- sensor.sensor1
This does not bring any sensors to Homekit. I’m under impression that I should get only that one sensor by including it like this. I’m checking sensor name from the dev-states-list from the Home Assistant so I’m pretty sure I’m writing those correctly.
When I do
filter:
include_domains:
- sensor
I get all of the sensors I have on Home Assistant to appear in the Homekit.
When I do
filter:
include_domains:
- sensor
exclude_domains:
- sensor.sensor2
- sensor.sensor3
I still get all of the sensors (even those which are listed on exclude) in the Homekit.
What I could be doing wrong?