@bryceblood are you talking about MMM-Slack and
MMM-SlackAnnouncements? I’m not the creator or maintainer of those. Or did I misunderstand your question? Thanks.
Read the statement by Michael Teeuw here.
Posts
-
RE: Magic Mirror Discord Group
-
RE: MMM-forecast-io -- Localized up to the minute weather
@code999 you can comment out this line
forecastBar.appendChild(bar);but it will look kind of bad. Those bars are sort of a default look that you get from darksky/forecast UI. -
RE: MMM-forecast-io -- Localized up to the minute weather
@lavolp3 said in MMM-forecast-io -- Localized up to the minute weather:
Guys, going through the thread, I see that a lot of good ideas were implemented in forks but not sent as PRs. I think it would be a good idea to have some of these included into the original. dmcinnes/MMM-forecast-io, since this is the one referenced in the original MagicMirror.
@dmcinnes what do you think?
Do you want this rep to be bloated up or do you want it to be kept mostly as it is and leave major changes to forks?I would expect at least to have some of @morozgrafix very good ideas implemented as optional (sunset, precipitation probability).
Also @rak 's ideas look very very promising but I admit might be a bit much as changes for the master.I just submitted a PR for displaying Sunrise and Sunset times. https://github.com/dmcinnes/MMM-forecast-io/pull/22
I will try to find some time to improve wind forecast and get another PR submitted sometime this weekend.I also just submitted a PR for wind speed and direction https://github.com/dmcinnes/MMM-forecast-io/pull/23
Precipitation probability forecast is also submitted as a PR: https://github.com/dmcinnes/MMM-forecast-io/pull/24
I also sneaked another PR that allows easy adjustments to forecast table look and feel: https://github.com/dmcinnes/MMM-forecast-io/pull/25
-
RE: MMM-forecast-io -- Localized up to the minute weather
@lavolp3 One thing that I would suggest is to group your changes into relevant and smaller size chunks and submit separate PRs for those, instead of one massive PR. It’s easier for reviewers and for you in case you need to make changes based on comments. Cheers.
-
RE: MMM-forecast-io -- Localized up to the minute weather
@lavolp3 I haven’t pulled from master repo in a while and not sure if my changes are compatible at this point. I’m happy to clean it up, test it and submit a PR. Just let me know.
-
RE: MMM-forecast-io -- Localized up to the minute weather
I’ve added some of those on my local branch a long time ago. Feel free to pick from there https://github.com/morozgrafix/MMM-forecast-io/commit/972201f64d432c3c0863a7d76364e7f8af1bb817 and https://github.com/morozgrafix/MMM-forecast-io/commit/13ff8b78c86dc0905e46c11702d7173571517e79
My fork is fairly old and hasn’t been synced in a while, though.
It looks like this:

-
RE: MMM-horoscope - daily horoscope
@Iseknutz I haven’t touched that code in about 9 months. I can certainly look at the URL and see if that can be implemented.
-
RE: Magic Mirror Discord Group
@Mykle1 invite sent to email listed in your profile. Thanks.
-
RE: Replacing snow flakes with hearts in the MMM-SNOW module
@Hein-Jan sorry it didn’t work, as I mentioned earlier I’m not familiar with ModuleScheduler.
-
RE: MMM-horoscope - daily horoscope
@Maxzovirax Good point. It will not work with 2 modules running simultaneously because they both will pick up same broadcast message from
node_helper.js. I wonder if modification of the module to allow display of multiple horoscope predictions in the same module would be sufficient. It will take a bit of time to do that modification and I’m going on a small vacation tomorrow. I will think on how it can be addressed. Thanks for bringing it up. -
RE: IE11 / Edge browser black screen
@Jayh391 No I didn’t run Edge in developer mode. I haven’t tested it extensively though.
-
RE: Replacing snow flakes with hearts in the MMM-SNOW module
@roramirez Yes you are right, I also thought about idea of general module that can be configured with various images or possibly have a schedule that will pick images from different folders and be hidden rest of the time.
-
RE: I am sure nobody know it but...perhaps you know a fade in/out switch?
@fersev ummm, there is a buy link right in the description of the video that you’ve posted.
-
RE: Replacing snow flakes with hearts in the MMM-SNOW module
@Hein-Jan I’m not very familiar with MMM-ModuleScheduler but I have some experience with cron jobs
It typically goes like this
[minute] [hour] [day of the month] [month] [day of the week]in your
module_schedule: {from: '0 7 14 02 *', to: '30 23 14 02 *' }I would replace month number from02to2(allowed values for that field are 1 through 12). So it would read likemodule_schedule: {from: '0 7 14 2 *', to: '30 23 14 2 *' }Your from value would translate to something like
at 07:00am on 14th day of the month in February (it can be any day of the week)in human languageand your to value would read as
at 11:30pm (or 23:30) on 14th day of the month in February (it can be any day of the week).Hope this helps.
-
RE: Replacing snow flakes with hearts in the MMM-SNOW module
@schlachtkreuzer6 nice job. I told you it wasn’t that hard. :clap: :thumbsup:
-
RE: I am sure nobody know it but...perhaps you know a fade in/out switch?
@fersev that’s called dimmer light switch. Plenty of them available on the market. Most designs are tailored for household use. Keep in mind that whatever you are going to use it with should be “dimmable” like an incandescent light bulb, some of the newer LED light bulbs are also dimmable.
-
RE: How to load a <script> src = " " </script> into my mirror?
@nbrenn sorry swamped at work today. That line just takes all of the values from each line and adds them up. It will not work for multiple columns and true csv files. You would need to resort to logic that we had initially in JSfiddle. If I have time I will look into this later today.
-
RE: Replacing snow flakes with hearts in the MMM-SNOW module
@schlachtkreuzer6 Feel free to fork my repo. It’s pretty easy to modify it to display other images. I resized my images to 50x50px because they were fairly hi res after downloading them from flaticon site.
-
RE: Replacing snow flakes with hearts in the MMM-SNOW module
@Hein-Jan reducing
valenitnesCountmay help with “sluggishness”.