Plugin Thermostat - bug?

Hello,

En mettant le nez dans les sources du plugin Thermostat, je pense être tomber sur un bug ligne 283 du fichier :

/var/www/html/plugins/thermostat/core/class/thermostat.class.php

Les sources n’étant pas dispo, je ne peut faire de PR et donc voici ce que j’ai relevé.

Actuellement :

$coeff_outdoor = ($thermostat->getConfiguration('coeff_outdoor_cool') * $thermostat->getConfiguration('coeff_outdoor_autolearn') + $coeff_outdoor) / ($thermostat->getConfiguration('coeff_outdoor_cool_autolearn') + 1);

Ne devrait pas plutôt être :

$coeff_outdoor = ($thermostat->getConfiguration('coeff_outdoor_cool') * $thermostat->getConfiguration('coeff_outdoor_cool_autolearn') + $coeff_outdoor) / ($thermostat->getConfiguration('coeff_outdoor_cool_autolearn') + 1);

Bonjour,
Effectivement merci pour le retour ca sera corrigé dans la prochaine version du plugin

Ce sujet a été automatiquement fermé après 24 heures suivant le dernier commentaire. Aucune réponse n’est permise dorénavant.