Sensor of Temperature Feels Like

>> Solution is here <<

Could someone please explain how to add a ‘feels like’ sensor using my own temperature and humidity sensor, but with the wind speed from my weather provider?

  - platform: temperature_feels_like
    name: 'Draußen Feels-Like-Temperature'
    source: weather.homie
  - platform: temperature_feels_like
    name: 'Draußen Feels-Like-Temperature by Sensor'
    source:
      - weather.homie
      - sensor.temperature_humidity_sensor_9f2e_humidity
      - sensor.temperature_humidity_sensor_9f2e_temperature
  - platform: temperature_feels_like
    name: 'Draußen Feels-Like-Temperature by Sensor 2'
    source:
      - sensor.temperature_humidity_sensor_9f2e_humidity
      - weather.homie
      - sensor.temperature_humidity_sensor_9f2e_temperature
  - platform: temperature_feels_like
    name: 'Draußen Feels-Like-Temperature by Sensor 3'
    source:
      - sensor.temperature_humidity_sensor_9f2e_humidity
      - sensor.temperature_humidity_sensor_9f2e_temperature
      - weather.homie

I created four different sensors to test the behaviour, but it seems that none of them result in the missing values being taken from the weather provider.

Here are the results:


and:

Sorry. I see my problem :smiley:

Now I used the “new” name for the plattform in my configuration.yaml
See the change here: Rename integration to match same another HA core attributes · Limych/ha-apparent-temperature@7fdbab6 · GitHub

Here is my final config in my confirguration.yaml to get the wind from the weather-sensor but temp and humi from my local sensor:

    #This Feels-Like sensor is getting wind, temp and humidity      
  - platform: apparent_temperature
    name: 'Draußen Feels-Like-Temperature by Weather'
    source: weather.homie
    #This Feels-Like sensor is getting wind from the weather-sensor but temp and humidity from a local sensor
  - platform: apparent_temperature
    name: 'Draußen Feels-Like-Temperature by Sensor'
    source:
      - weather.homie
      - sensor.temperature_humidity_sensor_9f2e_humidity
      - sensor.temperature_humidity_sensor_9f2e_temperature

Looks like that:

I make a tiny change to readme.md:

1 Like