Automatyzacja głowic, termostatów + kocioł gazowy

no niestety nie kumam tych automatyzacji
głowica dla mnie powinna pracować głównie na dwa sposoby:

  1. pozbawiona własnej inteligencji - tylko termometr i zawór zamknij / otwórz dopływ wody, wtedy sterowanie reakcjami na zmiany temperatur steruje HA
  2. z własną inteligencją, wtedy sama utrzymuje zadaną temperaturę a HA co najwyżej sugeruje kalendarz kiedy ma się to dziać.

Chciałbym aby głowica pracowała w scenariuszu numer 1.
Jak to ustawić w automatyzacjach?

alias: OGRZEWANIE_TEMP_MAX_WYŁĄCZENIE_SYPIALNIA
description: >-
  Dla wszystkich głowic wyłączenie kotła po osiągnięciu temperatury wszystkich
  głowic
trigger:
  - platform: numeric_state
    entity_id: climate.termostat_grzejnik_sypialnia
    attribute: current_temperature
    above: 21
condition:
  - condition: and
    conditions:
      - condition: numeric_state
        entity_id: climate.termostat_grzejnik_salon
        attribute: current_temperature
        above: 21
  - condition: and
    conditions:
      - condition: numeric_state
        entity_id: climate.termostat_grzejnik_pokoj_dol
        attribute: current_temperature
        above: 20
  - condition: and
    conditions:
      - condition: numeric_state
        entity_id: climate.termostat_grzejnik_lazienka_prasowalnia
        attribute: current_temperature
        above: 21
  - condition: and
    conditions:
      - condition: numeric_state
        entity_id: climate.termostat_grzejnik_zdenek
        attribute: current_temperature
        above: 21
  - condition: and
    conditions:
      - condition: numeric_state
        entity_id: climate.termostat_grzejnik_maniek
        attribute: current_temperature
        above: 21
action:
  - type: turn_off
    device_id: b909d5dd84f141604cd9bbfa888dc843
    entity_id: switch.kociol_gazowy
    domain: switch
  - device_id: ded16dd4a5c2d800bff4e6f93e2a4ca8
    domain: climate
    entity_id: climate.termostat_grzejnik_sypialnia
    type: set_hvac_mode
    hvac_mode: "off"
mode: single