Skip to content

Commit

Permalink
Multi gateways support updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tcharp38 committed May 6, 2024
1 parent e15e6b1 commit 1adeba6
Show file tree
Hide file tree
Showing 4 changed files with 190 additions and 175 deletions.
14 changes: 7 additions & 7 deletions desktop/php/Abeille-NewZigate.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<!-- Remplacement d une zigate:
<br/>
<select name="zigateZ" style="width : 40%">
<?php
for ( $i=1; $i<= maxNbOfZigate; $i++ ) {
< ?php
for ( $i=1; $i<= maxGateways; $i++ ) {
echo '<option value="' . $i . '">Zigate' . $i . '</option>';
}
?>
Expand All @@ -23,7 +23,7 @@
</br><br/> -->
<!-- </form> -->

{{Vous avez remplacé une zigate ou il y a eu changement de port générant ainsi un changement de son adresse IEEE.}}
{{Vous avez ajouté ou remplacé une zigate, ou il y a eu changement de port générant ainsi un changement de son adresse IEEE.}}
<br/>
{{La Zigate est ignorée par mesure de sécurité.}}
<br/>
Expand All @@ -32,13 +32,13 @@
<br/>
<select id="idNewZigate" style="width : 40%">
<?php
for ($zgId = 1; $zgId <= maxNbOfZigate; $zgId++) {
if (config::byKey('ab::gtwEnabled'.$zgId, 'Abeille', 'N') != 'Y')
for ($gtwId = 1; $gtwId <= maxGateways; $gtwId++) {
if (config::byKey('ab::gtwEnabled'.$gtwId, 'Abeille', 'N') != 'Y')
continue; // Disabled
$eqLogic = Abeille::byLogicalId('Abeille'.$zgId.'/0000', 'Abeille');
$eqLogic = Abeille::byLogicalId('Abeille'.$gtwId.'/0000', 'Abeille');
if (!is_object($eqLogic))
continue;
echo '<option value="'.$zgId.'">Zigate '.$zgId.' ('.$eqLogic->getHumanName().')</option>';
echo '<option value="'.$gtwId.'">Zigate '.$gtwId.' ('.$eqLogic->getHumanName().')</option>';
}
?>
</select>
Expand Down
1 change: 1 addition & 0 deletions docs/fr_FR/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

- Page de config: Ajout support prélim clef 'EZSP'.
- Onglet avancé Zigate: Mode 'normal' désactivé. Mode 'brut' par défaut.
- Support multi-passerelles: Des tas de modifs internes.

## 240501-STABLE-1

Expand Down
Loading

0 comments on commit 1adeba6

Please sign in to comment.