@nigel-daniels updated to use national languages (help with translations appreciated!) and it also uses night time icons.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Weather-Now
-
RE: Code for running MM on Pi Zero
@pi HI thanks for liking the mirror project, as already mentioned I just used the existing code and the modules I’ve written can be found under the modules (utilities and transport) section of the forum.
The thread on the pi zero under the hardware forum is really useful too.
-
RE: MMM-3Day-Forecast
@MichMich great idea… done! If anyone can translate the text I have? I’d appreciate and will add the appropriate files.
BTW. I assume this does not work in the node helper?
-
RE: Can somebody with permissions rename my posting bc I have renamed my module...
@KirAsh4 Hi in some cases this is true but, especially, with module announcements it’s likely that updates will supersede the information in the originating posts. This is the case with one of my modules. I’ve held off starting a new topic with the same name and tagged an update on the bottom of the topic but this requires people scroll below the fold to find that information.
Is there way of announcing modules with version updates so that the oldest posts are pushed down so potential users see the latest post on the module?
-
RE: MMM-3Day-Forecast

This module has been updated to include humidity. More details on the module read me page here. -
RE: MMM-FAA-Delay
@fwood04 I’ve found some time and reworked the code so that you can provide an array of airport codes and display multiple airports correctly.
You will need to re-clone the module and use the new format of configuration.I hope that helps.
-
RE: MMM-3Day-Forecast
@cowboysdude I’ve spotted an error in my ReadMe that I think has caused the problem here. In my example config I only put
keywhere I entered the API key instead ofapi_key. Try changing the name of that config variable and things should sort themselves out, I hope that works. Let me know if there are any other problems and I’ll update the Read Me files. -
RE: MMM-3Day-Forecast
@cowboysdude thanks for all of the info, it points to a need for to set up the same environment you have and to recreate the issue you have. I have a spare Pi so I’ll set up the full environment on it. When I’ve got there (probably Wed) I’ll see if I can debug the set up.
The system I’m running is on a Pi Zero running as
node serveronlyso I suspect there could be an issue with these modules firing up under electron. I’ll check this out and let you know what I find out. -
RE: MMM-3Day-Forecast
@nigel-daniels another thing to try out as well is to test your API key is ok. Just put:
http://api.wunderground.com/api/[YOUR_API_KEY_HERE]/conditions/q/CA/San_Francisco.json
Into a browser replacing the [] and their content with your own api key. It should return a bunch of text with the data on the current weather in San Francisco.
-
RE: MMM-3Day-Forecast
@cowboysdude hi, sorry to here that:( I have a couple of questions to check out what may be going on:
- Did the request dependancy install ok?
- Can you post or pm me the config you are using?
I’ll try and recreate the issue and figure out what is going on… It may be best to do this as an issue on the github site.
-
RE: Tutorials or Overview for Module Dev?
@nbrenn I found it really useful to find a module someone had already written and look at that as an example. I’ve now written a few simple modules that just pull data from web service and display it on screen. Feel free to fork any of them and pull them apart for ideas, the one I just submitted (MMM-AirNow) is pretty basic.
-
RE: MMM-3Day-Forecast
Nice idea! I’m tied up for a few days but I’ll do my best to grab some time and look into getting humidity posted too.
-
MMM-AirNow

The last module I wanted to port across to the MM2 environment. This one uses a US air quality service to provide the closest air quality data to the zip code provided. Sorry this is US only, if you know of an international web service please just let me know.The module is available from here. Enjoy!
-
Front door mirror

I always used to have a mirror next to the front door so made this one to provide at a glance information on the way out. I’m not much of a wood worker nor do I have a workshop so I got the frame made up in Michaels. The frame is based on a shadow box frame. The mirror material is a 2-way acrylic from TAP Plastics.The first incarnation (V1.0) used an old Pi-A and had some home-brew code running on it. When I heard about the MM2 project I figured it was time to create Mirror 2.0. This version has a Pi-Zero for it’s brains and I ported over some of the modules I had in mirror V1.0.
The next step (V2.1) will be to put a power point on the wall behind the mirror and use the remaining hole for a PIR so I can blank the screen when no one is in front of it.
-
MMM-3Day-Forecast

This module is another weather module and is a port of a home-brew mirror project I’d done prior to switching to MM2. I got used to the three day forecast and the details it provided so figured I’d port it across. I hope you like it.You can get it here
-
MMM-Weather-Now

This is yet another weather module, this one is very simple and is designed to be used in conjunction with the module MMM-3Day-Forecast. It’s basically a port of my own home-brew mirror project. I just got used to the display, I hope you like it too.You can get it from here
-
RE: MMM-FAA-Delay
@fwood04 If you want to set up multiple airports you can set a series of modules something like:
{
module: 'MMM-FAA-Delay',
position: 'top_left',
classes: 'dimmed medium',
header: 'Airport Delays',
config: {
airport: 'SFO',
interval: 300000 // 5 min updates
}
},
{
module: ‘MMM-FAA-Delay’,
position: ‘top_left’,
classes: ‘dimmed medium’,
config: {
airport: ‘LAX’,
interval: 300000 // 5 min updates
}
},I hope that helps.
-
RE: Pi Zero
@darkeagl105 HI thanks for the update, I did end up recompiling Kweb which worked once I’d figured out I had to do that… I’m just now stuck figuring out how to stop my screen blanking after 10 mins! I think I’ve added the xset commands in about 5 locations and still nothing!
-
RE: Pi Zero
@nigel-daniels sigh ok tried that rebooted into the GUI and used the screensaver config to switch off the screensaver. Then reconfigured the system to log into the CLI and use the
start.shto kick of X/Kweb… 10 mins later a black screen. I’m running out of locations to try using the set commends, I even added them to thestart.sh. -
RE: Pi Zero
@Neokamikaze Thanks I’ll give that a shot. This is Jessy, and it sounds like the sort of problem I’m seeing.
Me thinks it will need to be in the morning now… gone midnight in my TZ so I’ll get screensaver on board and deal with pulling the mirror apart to get the minikbd plugged back in till then.
I’ll let you know how it works out.