Hello,
I recently set up a sensor which i’m trying to appear in HomeKit. The sensor seem to work as when I check under developer tools>states in HASS I can see the sensor. As well as when I go to devices and setup my HomeKit integration I can select the sensor and sync it over to HomeKit. Though when I open the home application on my iPhone the sensor don’t show up.
This my code for my sensors, the sensor i’m talking about that’s giving me trouble is “Watch Procent” But I choose to include both here in case there some error with my configuration.
template:
- sensor:
- name: "AC Set Temperature"
unit_of_measurement: "°C"
state: '{{ states.input_number.temperatureac.state | round(1, default=18) }}'
- sensor:
- name: "Watch Procent"
unit_of_measurement: "%"
state: '{{ states.input_number.watchbattery.state | round(1, default=18) }}'
Kind regards Julian