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);