Install smart thermostat

Bonjour
j’ai installé smart thermostat pid via hacs
mais je le vois nulle par


sauf dans hacs ?

L’installation par HACS, télécharge simplement des fichiers nécessaires.
Pour ajouter une intégration de ce type là il faut suivre la doc liée, mais c’est généralement c’est soit une config manuelle dans le fichier configuration.yaml, soit dans la liste des intégrations en cliquant sur « +Ajouter une intégration ».

mais je la trouve pas non plus ?

et la doc liee il a ça

Mais là tu vient de lire la partie installation que visiblement tu as faite avec HACS.

Il te faut maintenant la partie configuration, un ptit effort, c’est juste après dans le doc :wink:

Configuration:

The smart thermostat can be added to Home Assistant after installation by adding a climate section
to your configuration.yaml file.

Configuration example:

configuration.yaml

climate:
  - platform: smart_thermostat
    name: Smart Thermostat Example
    unique_id: smart_thermostat_example
    heater: switch.on_off_heater
    target_sensor: sensor.ambient_temperature
    min_temp: 7
    max_temp: 28
    ac_mode: False
    target_temp: 19
    keep_alive:
      seconds: 60
    away_temp: 14
    kp : 5
    ki : 0.01
    kd : 500
    pwm : 00:15:00

Bonjour,
Pour utiliser GitHub - ScratMan/HASmartThermostat: Smart Thermostat with PID controller for HomeAssistant , il faut l’installer par HACS.
Ensuite editer le fichier configuration.yaml et ajouter ces lignes et rebooter. Adapte suivant t’es besoin:

climate:
  - platform: smart_thermostat
    name: Smart Thermostat Salon
    unique_id: smart_thermostat_salon
    heater: switch.tz3000_wamqdr3f_ts011f_switch   # choisie ta prise a utiliser
    target_sensor: sensor.temperature_salon_tuya_local  # choisie ton capteur de température
    min_temp: 9
    max_temp: 28
    ac_mode: False
    target_temp: 17
    target_temp_step: 0.1
    keep_alive:
      seconds: 60
    away_temp: 15
    kp : 100
    ki : 0
    kd : 0
    pwm : 00:15:00

tu trouvera tout les informations des paramètres ici GitHub - ScratMan/HASmartThermostat: Smart Thermostat with PID controller for HomeAssistant

1 « J'aime »