Generic thermostat - I do not see it in Intergation options from HASS

Hi I do not know how to install the generic thermostat integration. When I go to Settings- Devices& Services ADD INTEGRATION button can’t see it .

As described in the docs, you set it up in your configuration.yaml file, not the UI.

Hi , thanks fro reply.
I did this… I generated in config/Climate/ Generic_thermostat.yaml

climate:
  - platform: generic_thermostat
    name: Centrala Gaz
    heater: switch.termostatnanoswgen5
    target_sensor: sensor.lumi_lumi_weather_73a3f207_temperature
    min_temp: 12
    max_temp: 25
    ac_mode: false
    target_temp: 17
    cold_tolerance: 0.3
    hot_tolerance: 0
    min_cycle_duration:
      seconds: 5
    keep_alive:
      minutes: 3
    initial_hvac_mode: "off"
    away_temp: 16
    precision: 0.1

And include this file in configuration.yaml

climate: !include Climate/Generic_thermostat.yaml

Now I deleted the first line from my yaml file and it works , so was a coding problem.

I am a beginner and maybe I do not use all terms correctly .

Here’s why:

Your original config include would have resolved to this:

climate: # !include resolves here and below
  climate: # <-- double "climate:" is not correct config.
    - platform: generic_thermostat
      name: Ce...etc

By removing that first line it now correctly resolves to:

climate: # !include resolves here and below
  - platform: generic_thermostat
    name: Ce...etc