@Mykle1 it is not “danger”. Next days a update is coming.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-SystemStats (cpu temp/load, fre ram ...)
-
RE: MMM-FHEM shows values from FHEM devices ...
@DazDavid what killed your FHEM Server? It’s should not be possible, the plugin could kill your MagicMirror, because of a config file with syntax errors or to high update rate.
-
RE: MMM-FHEM shows values from FHEM devices ...
@Dom1n1c it is possible. I don’t have the time to rewrite the module for openhab. Sorry
-
RE: MMM-FHEM shows values from FHEM devices ...
I updated the Module to Version 0.2.0
Update instruction https://github.com/BenRoe/MMM-FHEM#update-the-modulePlease change the module configuration in your config.js to the new structure.
@DazDavid now with https support
@Bobby fix the bug you found
@DirkS you can set different readings for every FHEM deviceIf you like the module please star it on github
-
RE: MMM-FHEM shows values from FHEM devices ...
@DirkS yes you can use the weather icons from http://erikflowers.github.io/weather-icons/ and the font awesome icons http://fontawesome.io/icons/
@DazDavid here is the thread to this problem https://forum.magicmirror.builders/topic/697/multiple-module-instances-overwrites-itself-values/2
I will rewrite the module. Then every device can have different reading values.
@Bobby is FHEM running on the same machine as the MM2?
-
RE: MMM-FHEM shows values from FHEM devices ...
@DirkS If i have time, i will change it that every device can be configured.
No clue how to implement a debug function. Feel free to do Pull Request. -
RE: MMM-FHEM shows values from FHEM devices ...
@DirkS The Module use the FHEM name of the device or you can set a alias for the device in FHEM like this in the fhem.cfg file
attr LaCr.Thermo01 alias Bad
One module config is for a group of devices with the same value type. One group for temperature and humidity and another for lights …
modules: [ { module: 'MMM-FHEM', position: 'bottom_bar', config: { deviceNames: [ 'FhemDeviceName1', 'FhemDeviceName2', 'FhemDeviceName3', ], deviceReadings: [ { name: 'temperature', icon: 'wi wi-thermometer', suffix: '°' }, { name: 'humidity', icon: 'wi wi-humidity', suffix: '%' }, ], }, }, { module: 'MMM-FHEM', position: 'bottom_bar', config: { deviceNames: [ 'FhemDeviceLight1', 'FhemDeviceLight2', ], deviceReadings: [ { name: 'state', icon: 'fa fa-lightbulb-o', suffix: '' }, ], }, }, ]
Ich kann das vielleicht auch umschreiben, sodas man für jedes FhemDevice die Readings/Werte angeben kann.