And now, having actually looked at the file in question, I see it includes latitude and longitude for each entry. Very cool.
Read the statement by Michael Teeuw here.

Posts
-
RE: Modifying the Config File
-
RE: Modifying the Config File
@jimb I will always defer to @sdetweil 's greater knowledge and intelligence but another option is (I hope, anyway, since it’s what I’m using) to use the latitude and longitude of your location. I have the weather module set up to show my wife’s school using the coordinates. (We are known for our microclimates here – her school 2 miles away may have completely different weather from what we have at home.)
To get the coordinates, I went to maps.google.com, clicked on a location, then copied the resulting URL. It should look like this:
https://www.google.com/maps/@37.7761918,-122.4222641,16.25z?entry=ttu
The first number after the @ sign is the latitude; the second is the longitude. So you could put in your config file:
lat: 37.7761918, lon: -122.4222641,
and it will show the weather for your location (or the San Francisco War Memorial Opera House in that example). This might be handy if you’re not near a city listed in the file.
-
RE: can i build software before hardware and how do i go about that ?
@mezcalbomb If you have a Raspberry Pi, I highly recommend @sdetweil 's installation script. You can set up the pi, install everything and use PuTTY and your browser of choice to do all your testing from your main desktop. Then, when you’ve got it all the way you like it, set up your monitor and frame and all and it will run locally.
I have an RPi downstairs in the hall attached to an old monitor that will (eventually) get put in a frame and mounted in the kitchen. It’s running the MM as I have it set up thus far.
Meanwhile, in my office upstairs, I have another RPi that I am using to test modules – I use PuTTY to run MM and view the console log, WinSCP to transfer files and the same editor I use for work to edit files. Then I just have a browser tab pointed at the RPi’s IP address. (Actually, I have two such tabs, one for the dev machine and one for the one downstairs.)
-
RE: MMM-BackgroundSlideshow does not respond to notifications
So the fix appears to be* to add the following line of code to the MMM-BackgroundSlideshow.js file at line ~175:
//Quick and dirty fix to redirect the notification this.socketNotificationReceived(notification,payload);
Seems to be working now.
(Just adding this in case someone comes here to search for an answer first before going to Github.)
-
RE: MMM-BackgroundSlideshow does not respond to notifications
Never mind… it appears to be a bug in the module as discussed here: https://github.com/darickc/MMM-BackgroundSlideshow/issues/127
-
MMM-BackgroundSlideshow does not respond to notifications
I’m probably doing something wrong but it seems to me that MMM-BackgroundSlideshow is not responding to notifications.
I have MMM-Keypress installed which works fine with MMM-Pages but when I try to set it up to send notifications to MMM-BackgroundSlideshow, it’s like BS is ignoring them. (Using the same exact keys/configuration to send a notification to MMM-Pages works fine.)
Here are my config.js entries:
{ module: "MMM-Keypress", position: "bottom_right", config: { notifications: [ {key: "Enter", notification: "PAGE_INCREMENT"}, // {key: "Tab", notification: "PAGE_INCREMENT"}, // {key: "Space", notification: "PAGE_INCREMENT"}, {key: "MOUSE_SCROLL_UP", notification: "BACKGROUNDSLIDESHOW_PREVIOUS"}, {key: "MOUSE_SCROLL_DOWN", notification: "BACKGROUNDSLIDESHOW_NEXT"}, ], } },
{ module: 'MMM-BackgroundSlideshow', position: 'fullscreen_below', config: { imagePaths: ['modules/MMM-BackgroundSlideshow/Paintings/'], transitionImages: true, randomizeImageOrder: true, slideshowSpeed: 3600000, resizeImages: true, maxWidth: 1080, maxHeight: 1920, backgroundSize: "contain", transitions: ["opacity"], showProgressBar: true, } },
Note that I’ve tried a whole host of keys/keycodes and they work fine with MMM-Pages but do nothing for MMM-BackgroundSlideshow.
I’m not sure what I’m doing wrong.
-
RE: MM digital display hung like a picture
That’s awesome. Thanks for the additional info. I may try to do the same thing at some point, if I can get my wife to let me cut into the wall. 8^)
I’m planning on using a french cleat for my board that I’m working on in the kitchen; it seems the best way to go all around.
Great work and thanks!
-
RE: MM digital display hung like a picture
Looks great!
I would love to see a picture of the recessed outlet and hear more about how you did that.
Also, is the monitor one of the portable monitors you can find on Amazon?
-
RE: [MMM-MailMessage] Send messages to your MagicMirror via e-mail
@Volkae
Yes, that should mean it should be removed after 5 minutes. It’s possible that it’s not checking that as often as it should. I’ll look into it.To be honest, I’m not sure what controls how often it looks at that sort of thing – I think a new e-mail arriving triggers an update but I’m not sure. I may have to implement a timer of some sort (though I have no idea how to do that as yet).
The downside is that I don’t want it to check for e-mail too often as it may be viewed as a hacker/spammer. I’ll see what I can figure out.
-
RE: [MMM-MailMessage] Send messages to your MagicMirror via e-mail
@Volkae said in [MMM-MailMessage] Send messages to your MagicMirror via e-mail:
The possibility to see a running text (like a newsticker) would be nice……
I have actually thought about that and started looking at
MMM-NewsFeedTicker to try and figure it out. It shouldn’t be hard but my knowledge of CSS is virtually non-existant.I got rather busy with other stuff and was unable to follow through on that but at some point I will pick it up again.