Ok, understood. I don’t know if I find the time tomorrow. Maybe I have to wait until Wednesday to continue with the module. I keep you posted
Read the statement by Michael Teeuw here.

Posts
-
RE: Modul Plug in RNV Abfrage
-
RE: Error found: Error: Module version mismatch. Expected 50, got 46.
please run
npm list
, which electron version are you running?If it is 1.4 then please run
npm rebuild --runtime=electron --target=1.4.0 --disturl=https://atom.io/download/atom-shell --build-from-source
-
RE: Error found: Error: Module version mismatch. Expected 50, got 46.
Open a terminal, change into the MMM-Button folder and run this:
npm rebuild --runtime=electron --target=1.3.4 --disturl=https://atom.io/download/atom-shell --abi=50
-
RE: Modul Plug in RNV Abfrage
The vendor provided an api-key really fast and sending queries to their server is somehow simple. To go on I need a more detailed description of what you want to see on your mirror.
-
RE: Refresh Hello World module
Hi,
simplest way is to create a new module. So you don’t run into update problems in the future if someone changes the original hello world module.
Copy the whole helloworld folder from modules/default/ to modules/ and rename it to something different, lets say “mmm-iframe”.
- Rename the folder itself to
mmm-iframe
- Rename the
helloworld.js
file tommm-iframe.js
Then overwrite the content of
mmm-iframe.js
with this:/* global Module */ /* Magic Mirror * Module: mmm-iframe * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ Module.register("mmm-iframe",{ // Default module config. defaults: { text: "Hello World!", animationSpeed: 1000, }, start: function() { Log.info('Starting module: ' + this.name); var self = this; setInterval(function() { self.updateDom(); }, this.config.animationSpeed); }, // Override dom generator. getDom: function() { var wrapper = document.createElement("div"); wrapper.innerHTML = this.config.text; return wrapper; } });
- Now update your config file and replace the helloworld entry to load the mmm-iframe module instead.
I did not test this, I don’t have a magicmirror available currently, but this should get you going.
- Rename the folder itself to
-
RE: Black screen for copy of hellowold module
So you created a copy of the helloworld module and moved it to modules/Titus?
Then you renamed helloworld.js to Titus.js?
Did you modify Titus.js and changed this line
javascript Module.register("helloworld",{
to
javascript Module.register("Titus",{
to tell MagicMirror there is a new module called Titus? -
RE: Medos Bathroom Mirror
Good job. Very detailed description and the end result is very nice!
-
RE: MMM-Tube-Status (London Underground)
@djbenny07
enter the MMM-Tube-Status folder and rungit pull
, that should pull all changes from github
If you run the clone command again it will tell you the target directory already exists -
RE: Trouble changing to 12 hour time and to Fahrenheit.
Looks fine to me except for the last line. The ’ ’ around undefined are not the right ones. But that could be a copy and paste problem. I don’t have a computer with MagicMirror currently, so I can’t test your config file right now.