wat’s the weight of 1m²?
Read the statement by Michael Teeuw here.
Posts
-
RE: [ORDER CLOSED] Two way mirror order in Germany
-
RE: Mobile app (bachelor thesis)
That’s happened since i restored the reformatted config.js. ;-)
-
RE: Mobile app (bachelor thesis)
@strawberry-3-141
hi, Your app is successfully loaded from apple.
Little issue.
Can you tell me whats wrong here?
pi@raspi3-MM2:~/MagicMirror/modules/MMM-Mobile $ sudo npm install npm WARN lifecycle mmm-mobile@1.0.0~preinstall: cannot run in wd %s %s (wd=%s) mmm-mobile@1.0.0 node scripts/preinstall.js /home/pi/MagicMirror/modules/MMM-Mobile mmm-mobile@1.0.0 /home/pi/MagicMirror/modules/MMM-Mobile ├─┬ async@2.1.4 │ └── lodash@4.17.4 ├── moment@2.17.1 ├── qr-image@3.2.0 └── simple-git@1.65.0after a git pull
pi@raspi3-MM2:~/MagicMirror/modules/MMM-Mobile $ sudo git pull Aktualisiere 2e56f84..41dd1aa Fast-forward MMM-Mobile.js | 5 +++-- translations/es.json | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 translations/es.json pi@raspi3-MM2:~/MagicMirror/modules/MMM-Mobile $ sudo npm install npm WARN lifecycle mmm-mobile@1.0.0~preinstall: cannot run in wd %s %s (wd=%s) mmm-mobile@1.0.0 node scripts/preinstall.js /home/pi/MagicMirror/modules/MMM-Mobileit remain. Same failure!
Note from admin: Please use Markdown on code snippets for easier reading!
-
RE: MMM-Globe
Here are some needful sources
-
RE: Mobile app (bachelor thesis)
Hi, thank you for this.
Very IMPORTANT!!!
As i put the Module “MMM-Mobile” at the very last module on the end of the
config.js, all my module were started in a new order so that the modules was on different locations.My
config.jswas modified like this sample:/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ var config = { port: 8080, // address: "192.168.178.45", ipWhitelist: [ "127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.1/24", ], language: 'de', timeFormat: 24, units: 'metric', modules: [ { module: 'alert', classes: 'small bright', // Add your own styling. Optional. disabled: false, }, { .......and so on. That means, the hole config structure was damaged and in one line.
Has anyone else this issue?
After restoring the old config.js from the backup that your module was creating, the right module order was again ok.
After that i put the “MMM-Mobile” module at first module in my config and my mirror works like before.
Note from admin: Please use Markdown on code snippets for easier reading!