Read the statement by Michael Teeuw here.
Posts
-
RE: News feed not loading and how not to translate them
use
url: 'http://www.ara.cat/rss'instead
You linked to http://www.ara.cat/rss.html which is a landing page, the real rss feed (xml based) is http://www.ara.cat/rss -
RE: Need help for MMM-Carousel
The way you put it overrides ignoreModules everytime. You need to define it as an array:
{ module: 'MMM-Carousel', config: { ignoreModules: [ 'alert', 'MMM-iCloud-Client', 'MMM-DWD-WarnWeather', 'calendar', 'compliments', 'MMM-swisstransport', 'clock' ], } }, -
RE: [ORDER CLOSED] Two way mirror order in Germany
I just started a new post to collect interested users. Of course without any promise from Goldjunge_Chriz to really do a second order.
-
RE: Image Galery
@Jeff said in Image Galery:
I trying to get shadows around the picture to get a smooth overlay from the picture to the mirrors backround.
I’m not sure how to do this. The only way I know, i to change the original picture e.g. on instagram and put a black shadow overlay around. But I’m not really happy with this solution.
Maybe someone knows better…Some options I could think of, by just modifying your css file.
- adds a small drop shadow to the image on the right side and at the bottom
#MMM-Instagram-image { box-shadow: 5px 5px 5px #aaa; }- adds a “glowing” shadow all around the image
#MMM-Instagram-image { box-shadow: 2px 2px 15px #aaa, -2px 2px 15px #aaa, 2px -2px 15px #aaa, -2px -2px 15px #aaa; }- make it look like a polaroid thrown on the mirror
#MMM-Instagram-image { box-shadow: 10px 10px 15px #aaa; padding: 10px 10px 30px 10px; border: 1px solid #bfbfbf; background-color: #fff; transform: rotate(-6deg); -ms-transform: rotate(-6deg); -webkit-transform: rotate(-6deg); }Not sure if this is what you are looking for. If you go for the polaroid look (which I really like) you could add several “versions” with different rotation values and change the class when loading the next image to have some randomness.
-
RE: Multipages
The core MagicMirror does not support this. However you can follow this approach, I guess it is what you are after:
https://forum.magicmirror.builders/topic/2530/multiple-pages-of-modules-using-css
-
RE: Mistake in the config.js and i dont no
Please remove this
{ module: 'calendar', -
RE: remoteFile in compliments module
@jcorraliza
Hi, I just tried on my computer …snippit from my config.js
{ module: 'compliments', position: 'lower_third', config: { remoteFile: 'compliments.json' } },my compliments.json
{ "morning" : [ "heyho" ], "afternoon" : [ "home early?" ], "evening" : [ "finally home" ], "fog" : [ "fog, oh no :(" ] }The compliments.json file is located in ~/MagicMirror/modules/default/compliments
Three things to mention:- Of course you need to use the default “currentweather” module
- You need to run the new updated MagicMirror version. Otherwise compliments and currentweather are not interacting
- There is a delay loading the compliments file. I added some debug output to track that and as you see MagicMirror starts with default values and takes 30 seconds to load and verify your remote file.

-
RE: [ORDER CLOSED] Two way mirror order in Germany
@tomster said in [ORDER CLOSED] Two way mirror order in Germany:
Thank you again for getting that order together. Still have to come up with something to return the favour though…
yeah, me too!
-
RE: Currency Exchange Rates?
all right everyone, I did some progress on the module. Please take a look at it and let me know your thoughts.
Features:
- ticker mode - displays all selected currencies in a marquee ticker, main use in my opinion is in bottom_bar or top_bar
- table mode - display all selected currencies in a table. Up to 8 currencies are split into 2 columns, anything above is split into 3 columns
- you can hide/show the curreny flag and the currency code/abbreviation
- you can display a custom header above the output to show your selected base currency and the date of the data
Question: Does anyone know if and how I could manipulate the original header to avoid the custom header thing and still display base currency and date?
One notice: data is provided by fixer.io which is updating their data once a day. There are other apis for currency rates but you cannot select your own base currency if you are on a free plan. Means you would have to pay for it
[card:yawnsde/MMM-CurrencyExchange]