Leipzig Germany
Read the statement by Michael Teeuw here.
Posts
-
MMM-SystemStats (cpu temp/load, fre ram ...)
[card:benroe/MMM-SystemStats]
It’s testet with a Raspberry Pi.ToDO:
- icons
- sd-card available space
- better indication for the system load
If you found an issue, please report it here.
If you like the module, give it a star on Github. -
multiple module instances overwrites itself values
Hello,
i am working on a module for FHEM. The module can show data like temperature from FHEM devices. It is working, but if i add two instances of the module to theconfig.js
it overwrites the dom values.{ module: 'MMM-FHEM', position: 'bottom_bar', config: { host: '192.168.178.28', port: '8083', deviceNames: [ 'LaCr.Thermo01', 'LaCr.Thermo02', 'LaCr.Thermo03', ], deviceReadings: [ { name: 'temperature', icon: 'wi wi-thermometer', suffix: '°' }, { name: 'humidity', icon: 'wi wi-humidity', suffix: '%' }, ], }, }, { module: 'MMM-FHEM', position: 'top_right', header: 'top_right', config: { host: '192.168.178.28', port: '8083', deviceNames: [ 'LaCr.Thermo03', 'LaCr.Thermo04', 'LaCr.Thermo05', ], deviceReadings: [ { name: 'temperature', icon: 'wi wi-thermometer', suffix: '°' }, { name: 'humidity', icon: 'wi wi-humidity', suffix: '%' }, ], }, },
Right values should different from the bottom one.
Any idea why? You can find the code here https://github.com/BenRoe/MMM-FHEM
-
RE: Blank Screen on Pi 1 after successful Install
Maybe i found the problem. I am working on a FHEM module for MM. I changed the
config.js
and had a wrong module name in it. After reload the screen was black.
@chase please check yourconfig.js
for spelling or json format errors. -
RE: Blank Screen on Pi 1 after successful Install
Should the url contain the port?
192.168.0.7:8080
? -
RE: Blank Screen on Pi 1 after successful Install
Try a newer node version.
Here is a blog post (unfortunately in german) how to install the latest version. Deinstall the node before you install the newer version.
http://www.benjaminroesner.com/blog/node-js-raspberry-pi-installieren/#variante2 -
RE: Blank Screen on Pi 1 after successful Install
Which node.js Version is installed? Maybe this is the problem.
-
RE: Blank Screen on Pi 1 after successful Install
@bharathvenkat i use MM with
node serveronly
and a Midori Browser on my Raspberry PI B. Theoretically it should work on your RPi. Like Mr.Meeseeks (btw rick and morty is awesome) proposed, open the developer console in the browser and check if there is some code.@pagoa he is using
node serveronly
. With this command electron is not used. -
RE: Debugging
I could not use
Log.log('foobar');
in the node_helper.js and if i useconsole.log('foobar');
the log is shown in the CLI. Is there a solution to show it in the Browser Console?