I have created this climate:

- name: "Riscaldamento"
  unique_id: "termostato"
  modes:
    - "off"
    - "heat"
    - "cool"
  mode_command_topic: "home/riscaldamento_raffrescamento/TEST/mode/set"
  mode_state_topic: "home/riscaldamento_raffrescamento/TEST/mode/state"
  temperature_command_topic: "home/riscaldamento_raffrescamento/TEST/temp/set"
  current_temperature_topic: "home/riscaldamento_raffrescamento/TEST/temp/state"
  power_command_topic: "home/riscaldamento_raffrescamento/TEST/pump/set"
  payload_on: 1 
  payload_off: 0
  min_temp: 17
  max_temp: 28
  temp_step: 0.1
  precision: 0.1

thinking that the power_command_topic would be sent whenever the temperature would go over/under the one set, but nothing ever get send to that topic. How can I turn on the pump when the temperature goes under the one set and turn it off when it goes over?

  • @peregusOP
    link
    English
    2
    edit-2
    2 months ago

    I’m trying to use the generic thermostat:

    climate:
      - platform: generic_thermostat
        name: termostato_raffreddamento
        heater: switch.valvola_climatizzazione
        target_sensor: sensor.aqara_temp_sala_temperature
        min_temp: 24
        max_temp: 28
        ac_mode: true
        target_temp: 26 
        cold_tolerance: 0.1
        hot_tolerance: 0.1
        min_cycle_duration:
          seconds: 300
        keep_alive:
          minutes: 3
        initial_hvac_mode: "off"
        away_temp: 28
        precision: 0.1
    

    But I only have the button to turn it off:

    If I click it nothing happens. What have I done wrong?

    • @[email protected]
      link
      fedilink
      English
      2
      edit-2
      2 months ago

      on your card, click on the three dots. You should have more options there. If it doesn’t work, change “intial_hvac_mode” to “cool”

      edit: didn’t see your next replied, glad you work it out

    • @peregusOP
      link
      English
      12 months ago

      I remove the feature “Climate HVAC mode” and added it again and now I can use it.