@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.
Read the statement by Michael Teeuw here.

Posts
-
RE: MMM-horoscope - daily horoscope
-
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 from02
to2
(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
valenitnesCount
may help with “sluggishness”.