Pas Home - Index
Hello, yesterday I try find how to support the HSM 100 sensor on a STM 332U sensor in OpenHAB. As I find nothing I change the code of the java lib java-enocean-library use by OpenHAB and then modify the OpenHAB addons org.openhab.binding.enocean to use it.
I am start with this fixe https://github.com/thomasletsch/opencean/commit/de974a9c194ef7617307b170c92bdc81c64c492a and I made some changes and fixes.
My changes are available here https://github.com/pascalmartin/openhab/tree/1.5.1 and here https://github.com/pascalmartin/java-enocean-library
Bonjour, hier j'ai chercher comment faire pour avoir le support du capteur HSM 100 sur un capteur STM 332U dans OpenHAB. Comme j'ai rien trouver, j'ai modifier le code de la lib java-enocean-library utiliser par OpenHAB et ensuite modifier le addon org.openhab.binding.enocean pour l'utiliser.
Je suis partie de ce fixe https://github.com/thomasletsch/opencean/commit/de974a9c194ef7617307b170c92bdc81c64c492a et j'ai fait quelque fixe et modification.
Mes modifications sont disponible ici : https://github.com/pascalmartin/openhab/tree/1.5.1 et ici https://github.com/pascalmartin/java-enocean-library
How To
1- Replace your openhab/addons/org.openhab.binding.enocean-1.5.0.jar with new org.openhab.binding.enocean-1.5.1.jar
2- In your items config use eep=A5:04:01 and parameter=HUMIDITY
OpenHAB demo.items config
// ---------------------------------------------------- // EnOcean Temperature sensor with humidity // ---------------------------------------------------- Number EnOcean_temperature_0180EE74 "Temperature 0180EE74 [%.1f °C]" <temperature> (enocean) {enocean="{id=01:80:EE:74, eep=A5:04:01, parameter=TEMPERATURE}"} Number EnOcean_humidity_0180EE74 "Humidity 0180EE74 [%.1f %%]" <temperature> (enocean) {enocean="{id=01:80:EE:74, eep=A5:04:01, parameter=HUMIDITY}"}
Top Comments