Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
zoic21 authored Sep 24, 2024
1 parent 0eb8e8f commit 96b7ad1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/class/ipx800v4.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ public static function pull($_eqLogic_id = null, $_cache = null) {
}
}
if($cmd->getConfiguration('infoType') == 'VR'){
$value = 100 - $value;
}
$value = 100 - $value;
}
$ipx800v4->checkAndUpdateCmd($cmd, $value, false);
}
}
Expand Down Expand Up @@ -450,7 +450,7 @@ public function execute($_options = array()) {
}
$value = str_replace('#slider#', urlencode($_options['slider']), $value);
if($this->getConfiguration('actionArgument') == 'VR' && $value <= 100){
$value = 100 - $value;
$value = 100 - $value;
}
break;
case 'color':
Expand Down
2 changes: 2 additions & 0 deletions docs/fr_FR/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
>
>Pour rappel s'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte
- Correction d'un soucis sur l'envoi de la commande stop pour les volets roulant

# 26/08/2024

- Support des volets roulants EnOcean
Expand Down

0 comments on commit 96b7ad1

Please sign in to comment.