Read the statement by Michael Teeuw here.
![](/uploads/profile/uid-1608/1608-profileimg.png)
Posts
-
RE: Module: iFrame! Starting Video automatically!
Hello Ramirez.
The video is starting but only once.
Then, when i restart the magicmirror.I realized the link http://media.tagesschau.de/video/100s/2016/1228/TV-100s-1841.podm.h264.mp4, is no option.
The video is not really the actual newest information of the day. I must use one of the other links.My plan was to became a possibility to start every time when i activate the iframe module with the first tapping on “iFrame” with the hep of the module “Remote-Control”.
-
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.js
was 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!
-
RE: [ORDER CLOSED] Two way mirror order in Germany
@Goldjunge_Chriz @CFenner @mcg @Jeff
No problem to take some mirrors to Heilbronn for other guys here.
I’m owner of a big AUDI. -
RE: Camera intigration in your Mirror
@yawns
Yes, sure. It solve many of my task build on my mirror.security cam with IR_LED’s for night-view possibilities, Motion detection, enabling/disabling mirror, facial recognition -> profile switcher.
Maybe other options lather with other ideas from the community.
-
RE: MMM-Remote-Control after upd MM to 2.1.0
Hi,
This system doesen’t let me upload some file for you.
The this way.
Here is the sample config with issues./* Magic Mirror Config Sample
*- By Michael Teeuw http://michaelteeuw.nl
- MIT Licensed.
*/
var config = {
port: 8080,
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, }, { module: "updatenotification", position: "top_center", classes: 'small bright', // Add your own styling. Optional. disabled: false, }, { module: 'MMM-Advent', position: 'bottom_center', classes: 'small bright', // Add your own styling. Optional. disabled: true, config: { updateInterval: 10 * 60 * 1000, marks: 0, //default is 24 height: 300, showFlameBeforeStart: false, // start: ["2016-11-27 00:00:01", "2016-12-11 00:00:01", "2016-12-18 00:00:01", "2016-12-04 00:00:01"], // end: ["2016-12-24 23:59:59", "2016-12-24 23:59:59", "2016-12-24 23:59:59", "2016-12-24 23:59:59"], start: "2016-01-01 00:00:01", //Geburtstag Anfang end: "2016-01-01 23:59:59", //Geburtstag Ende // start: "2016-12-01 00:00:01", //Eine Kerze; default is "2016-12-01 08:00:00" // end: "2016-12-24 23:59:59", //Eine Kerze; default is "2016-12-24 22:00:00" enableAnimation: true, fontColor: "#000000", //default is #000000 (black) candleColor: "#FFFFFF", //default is #FFFFFF (white) } }, { module: 'helloworld', position: 'bottom_bar', classes: 'small bright', // Add your own styling. Optional. disabled: true, config: { text: 'Alles Gute!', } },{ module: 'clock', position: 'top_left', classes: 'small bright', // Add your own styling. Optional. disabled: false, config: { displaySeconds: true, clockBold: false, showDate: true, displayType: 'digital', // Possible values: digital, analog, or both analogSize: '190px', analogFace: 'face-012', // 'simple' border, none, or face-### (value between 001 and 012) analogPlacement: 'right', // top, right, bottom, or left analogShowDate: 'top', // false, top or bottom secondsColor: '#888888', // any HTML RGB Color // timezone: 'Etc/GMT+10', // America/New_York, America/Santiago, Etc/GMT+10 } }, { module: 'MMM-Remote-Control', classes: 'small bright', // Add your own styling. Optional. disabled: false, // uncomment the following line to show the URL of the remote control on the mirror position: 'top_center' // you can hide this module afterwards from the remote control itself }, ]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== ‘undefined’) {module.exports = config;}and this one wich is running.
/* Magic Mirror Config Sample
*- By Michael Teeuw http://michaelteeuw.nl
- MIT Licensed.
*/
var config = {
port: 8080,
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, }, { module: "updatenotification", position: "top_center", classes: 'small bright', // Add your own styling. Optional. disabled: false, }, { module: 'MMM-Advent', position: 'bottom_center', classes: 'small bright', // Add your own styling. Optional. // disabled: true, // verursacht Fehler in MMM-Remote-Control Modul config: { updateInterval: 10 * 60 * 1000, marks: 0, //default is 24 height: 300, showFlameBeforeStart: false, // start: ["2016-11-27 00:00:01", "2016-12-11 00:00:01", "2016-12-18 00:00:01", "2016-12-04 00:00:01"], // end: ["2016-12-24 23:59:59", "2016-12-24 23:59:59", "2016-12-24 23:59:59", "2016-12-24 23:59:59"], start: "2016-01-01 00:00:01", //Geburtstag Anfang end: "2016-01-01 23:59:59", //Geburtstag Ende // start: "2016-12-01 00:00:01", //Eine Kerze; default is "2016-12-01 08:00:00" // end: "2016-12-24 23:59:59", //Eine Kerze; default is "2016-12-24 22:00:00" enableAnimation: true, fontColor: "#000000", //default is #000000 (black) candleColor: "#FFFFFF", //default is #FFFFFF (white) } }, { module: 'helloworld', position: 'bottom_bar', classes: 'small bright', // Add your own styling. Optional. // disabled: true, // verursacht Fehler in MMM-Remote-Control Modul config: { text: 'Alles Gute!', } },{ module: 'clock', position: 'top_left', classes: 'small bright', // Add your own styling. Optional. disabled: false, config: { displaySeconds: true, clockBold: false, showDate: true, displayType: 'digital', // Possible values: digital, analog, or both analogSize: '190px', analogFace: 'face-012', // 'simple' border, none, or face-### (value between 001 and 012) analogPlacement: 'right', // top, right, bottom, or left analogShowDate: 'top', // false, top or bottom secondsColor: '#888888', // any HTML RGB Color // timezone: 'Etc/GMT+10', // America/New_York, America/Santiago, Etc/GMT+10 } }, { module: 'MMM-Remote-Control', classes: 'small bright', // Add your own styling. Optional. disabled: false, // uncomment the following line to show the URL of the remote control on the mirror position: 'top_center' // you can hide this module afterwards from the remote control itself }, ]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== ‘undefined’) {module.exports = config;}[0_1483538699038_config.js.bak-abgespeckt_01](Uploading 100%)
[0_1483538731854_config.js.bak_abgespeckt_02](Uploading 100%)
-
RE: Full-screen alert (no other modules should be shown)
Hi, there is already such a module. It’s called alert and part of the default modules package.
https://github.com/MichMich/MagicMirror/tree/develop/modules/default/alert
There are a lot of options you can configure.
-
RE: [ORDER CLOSED] Two way mirror order in Germany
@yawns said in Two way mirror order in Germany:
# username sizes (m) area (m²) location additional comments pickup/delivery latest date of order 01 yawns ~ 0.8 * 0.8 ~ 0.64 Germany, Cologne polished edges delivery Summer 2017 :) 02 gustav1976 0.6 * 1.8 1.08 Germany, Koblenz polished edges delivery 03 gustav1976 1.0 * 1.2 1.20 Germany, Koblenz polished edges delivery 04 gustav1976 1.4 * 0.8 1.12 Germany, Koblenz polished edges delivery 05 lolobyte 0.8*0.6 0,48 Germany, Heilbronn polished edges pickup ASAP 06 Jeff 1,0 * 0,6 0,6 Germany, Karlsruhe polished edges pickup 07 Ashidian 0,69 * 0,435 0,3 (pay 0,4) Germany, Rostock polished edges delivery 08 cpramhofer 0,476 * 0,82 0,39 (possible??) Austria, Vienna polished edges delivery (cost??) 09 mcg 0,5 * 1,0 0,5 Germany, Ludwigshafen polished edges delivery, insured mid of January 10 cfenner 0,667*0,667 0,45 Germany, Mannheim polished edges delivery, (maybe package with mcg) 11 Total 6,87 @yawns @gustav1976 @lolobyte @Jeff @Ashidian @cpramhofer @CFenner @Goldjunge_Chriz
i can pick up some more mirrors. For example for people from Mannheim, Karlsruhe, Ludwigshafen, maybe for Koblenz and Cologne then forwarding to Mannheim or Ludwigshafen…
-
RE: Camera intigration in your Mirror
@schlachtkreuzer6 , @yawns , @andrei20wks , @reaper81
hey Guys, here the desired pictures.
Sorry, i forgot to remove the ip.
Here are the pics again.With normal LED spots
No Light and IR-Spot
With IR-Light
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
see my last post in this part of the forum.
https://forum.magicmirror.builders/topic/1320/mmm-remote-control-after-upd-mm-to-2-1-0/10