Skip to content

Commit

Permalink
version 0.1.1 Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
2bprog committed Sep 1, 2020
1 parent 1fb35a1 commit c65e410
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.1.1-beta (01/09/2020)

* Modification dans la gestion de l'indicateur de batterie Eedomus, si 0 la valeur est maintenant a 255 (faible)

## v0.1.0-beta (28/02/2020)

* Correction du lien eedomus dans le script DzVents
Expand Down
4 changes: 2 additions & 2 deletions eedomus_plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"plugin_id": "bbdomzevents",
"name_fr": "Domoticz - Events",
"icon": "domzevents.png",
"version": "0.1.0",
"version": "0.1.1",
"creation_date": "2020-01-16",
"modification_date": "2020-02-28",
"modification_date": "2020-09-01",
"author": "Benj70b<br><a target='_blank' href='https://github.com/2bprog/eedomus-domoticzevent-plugin'>Sources sur github <img src='/img/external.png'></a>",
"description_fr": "<b>Ce Plugin permet de configurer l'envoi de valeur de Domoticz vers l'Eedomus en temps réèl</b><br><br>Température, Humidité, Pression atmosphérique, Pression, Luminosité, Niveau de batterie, <br>Niveau de batterie - Indicateur Eedomus, Indicateur de signal, Valeur numérique brute, <br>Off/On Ferm./Ouv Ras/Mouv. (0 ou 1), Off/On Ferm./Ouv Ras/Mouv. (0 ou 100), <br>Consigne de Thermostat, deConzCap - Etat télécommande, deConzCap - Mode Tête Thermostatique, <br>deConzAct - On/Off et Luminosité, deConzAct - Couleur au format Eedomus R,G,B (0 à 100)<br><br>Ce plugin peut etre utilisé en complement de <a href='https://forum.eedomus.com/viewtopic.php?f=50&t=9236' target='_blank'>deConzAct</a> et <a href='https://forum.eedomus.com/viewtopic.php?f=50&t=9238' target='_blank'>deConzCap</a>",
"description_en": "",
Expand Down
6 changes: 4 additions & 2 deletions php/2B_domzevents.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?
/*
Fichier : 2B_domzevents.php
version : 0.1.0
version : 0.1.1
*/

/*
Expand All @@ -11,6 +11,7 @@
api=[code API pour le SET]
val=[valeur pour le SET]
bat=[0 ou 1] pour le SET 1 = utilisation de la Fonction setBattery
fv=[0 ou 1] pour forcer la mise a jour
p2=[xml|[html]
*/

Expand Down Expand Up @@ -131,7 +132,8 @@ functions = {
['pres'] = function() return math.floor(item.pressure) end,
['lux'] = function() return math.floor(item.lux) end,
['bat'] = function() return math.floor(item.batteryLevel) end,
['ibat'] = function() return math.floor(item.batteryLevel) end,
['ibat'] = function() if math.floor(item.batteryLevel) == 0 then return 255 end
return math.floor(item.batteryLevel) end,
['siglvl'] = function() return math.floor(item.signalLevel) end,
['nvalue'] = function() return item.nvalue end,
-- BUG domoticz timedOut ['com'] = function() if (item.timedOut) then return 0 end return 1 end,
Expand Down
2 changes: 1 addition & 1 deletion php/2B_domzevidd.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/*
Fichier : 2B_domzevidd.php
version : 0.1.0
version : 0.1.1
*/

// script pour obtenir la liste des id domoticz
Expand Down
2 changes: 1 addition & 1 deletion php/2B_domzevide.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?
/*
Fichier : 2B_domzevide.php
version : 0.1.0
version : 0.1.1
*/


Expand Down

0 comments on commit c65e410

Please sign in to comment.