Read the statement by Michael Teeuw here.
Posts
-
RE: Noob here. Need help with configuring modules
@relluts
Or you could adddisabled: trueto the module, like this{ module: "compliments", position: "lower_third", disabled: true },Just make sure every line except for the last one ends with a comma, otherwise magic mirror won’t accept your config file
-
RE: Replacing snow flakes with hearts in the MMM-SNOW module
@mirror.master said in Replacing snow flakes with hearts in the MMM-SNOW module:
i did one with leaves for fall
Fall? Really? We are still waiting for summer ;-)
-
RE: Possible sytax error in my config.js file?
Your problems are with the compliments module. You are missing a comma after
position: "lower_third"and another comma after"It was such a great day!"in the evening array. -
RE: mp2 won"t start properly
@dnzio
Do, did you do what pm2 told you? Did you copy and paste this and ran it in shell?
sudo env PATH=$PATH:/usr/bin /usr/lib/node_modules/pm2/bin/pm2 startup systemd -u pi --hp /home/pi -
RE: Mockup size adjusting
@olha
wrong screenshot? Or very brash advertisement? -
RE: I cant load 3rd party modules to my smart mirror.
{ module: 'MMM-NFL', header: 'NFL Scores', position: 'bottom_right', config: { colored: true, reloadInterval: 1800000 } },You missed some commas and a }
-
RE: PIR sensor behind glass?
@yo-less said in PIR sensor behind glass?:
@cowboysdude We might just drill a tiny hole into the frame of the mirror and put the PIR behind it without its Fresnel cover. Will experiment with that idea some more.
That’s the approach I was thinking of. Which PIR will you use?
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
Master branch is the official stable release
Developer branch is in development, so it contains new features but could contain bugs. Once the development team is happy they move the current development version over as the new stable release -
RE: MMM-SimpleTides - (Replaced by MMM-SORT)
@Mykle1 said in MMM-SimpleTides:
my pitiful programming skills don’t include making a module that does both
Simplest way would be this:
Add a config attribute{ disabled: false, module: "MMM-SimpleTides", position: "top_left", config: { ... outputLayout: "simple" } },and in
getDom: function() {after preparing/modifying your data you add a simple if/else clause.if (this.config.outputLayout == "simple") { // print the data as in SimpleTides } else { // print the data as in StaticTides } -
RE: Calendar Module: How to declare local calendar
A quick search for “local ics” would return this: https://forum.magicmirror.builders/topic/467/calendar-ics-file-from-local-path/6 :)
-
RE: Where to get (cheap) acrylic mirror from in Germany
@Blamer
That’s interesting. This guy ( http://blog.tobias-weis.de/smarter-smartmirror/ ) uses the myspiegel.de mirror and is more than happy with it. -
RE: Showcase Guidelines
@paviro said in Showcase Guidelines:
You can now edit posts forever :)
Yeah, finally :thumbsup_tone1:
I update my module threads yesterday -
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
Shouldn’t
pm2 start mmbe executed in~and not in~/MagicMirror? The tutorial said to create mm.sh in~So please go back one folder with
cd ..or directly withcd ~and try again -
RE: Do you use a Power Switch for your MM?
To shutdown the mirror I will use the remote tool, but to be sure there is no standby or whatever when I leave the house for couple of days, I intend to add a light switch on the wall next to the mirror which toggles the power outlets the mirror is connected to. However I am not yet at a stage to really build the mirror and the house is still being built, so the “target wall” does not yet exist.
-
RE: Newsfeed module behaves differently than Compliments with custom.css?
Yes and yes.
You could of course modify the classname line and apply other classes. But I would recommend defining own css styles to override existing styles instead.
If you modify the JavaScript file you could lose your changes if the module receives an update via github