Climate - set_temperature

Witam. Poproszę o pomoc.
Chciałbym aby przy wywołaniu automatyzacji zmienić wartość temperature tak aby pobierała wartość z innego sensora np. sensor.temp_bufor

action:
- service: climate.set_temperature
    data:
      temperature: 55
      hvac_mode: heat
    target:
      entity_id: climate.bojler
  mode: single

Poczytaj poniższy wątek:

Tamten temat jest bardziej złożony.
Nie korzystam z nod reda.
Ja tylko potrzebuję pomocy dotyczącej integracji HA climate. To wszystko.

Sterowanie wentylatorem zależne od temporary zewnętrznej, czasu

alias: Wentylator sterowanie
description: ""
trigger:
  - platform: state
    entity_id: sensor.pogoda_temperature
condition: []
action:
  - choose:
      - conditions:
          - condition: numeric_state
            entity_id: sensor.pogoda_temperature
            below: "20"
          - condition: time
            before: "08:00:00"
            after: "20:00:00"
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
              - sat
              - sun
        sequence:
          - service: climate.set_temperature
            data:
              temperature: 25.3
            target:
              entity_id: climate.wentylator
      - conditions:
          - condition: numeric_state
            entity_id: sensor.pogoda_temperature
            below: "11"
          - condition: time
            after: "08:00"
            before: "21:00"
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
              - sat
              - sun
        sequence:
          - service: climate.set_temperature
            data:
              temperature: 23.5
            target:
              entity_id: climate.wentylator
      - conditions:
          - condition: numeric_state
            entity_id: sensor.pogoda_temperature
            above: "11"
            below: "14"
        sequence:
          - service: climate.set_temperature
            data:
              temperature: 24
            target:
              entity_id: climate.wentylator
      - conditions:
          - condition: numeric_state
            entity_id: sensor.pogoda_temperature
            above: "14"
            below: "17"
        sequence:
          - service: climate.set_temperature
            data:
              temperature: 24.5
            target:
              entity_id: climate.wentylator
      - conditions:
          - condition: numeric_state
            entity_id: sensor.pogoda_temperature
            above: "17"
            below: "20"
        sequence:
          - service: climate.set_temperature
            target:
              entity_id: climate.wentylator
            data:
              temperature: 25
      - conditions:
          - condition: numeric_state
            entity_id: sensor.pogoda_temperature
            above: "20"
        sequence:
          - service: climate.set_temperature
            target:
              entity_id: climate.wentylator
            data:
              temperature: 27
    default: []
mode: restart