MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. morozgrafix
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 136
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: Magic Mirror Discord Group

      @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.

      posted in General Discussion
      morozgrafixM
      morozgrafix
    • RE: MMM-forecast-io -- Localized up to the minute weather

      @code999 it’s line 397 in MMM-fotecast-io.js https://github.com/dmcinnes/MMM-forecast-io/blob/77075e1c9011336f044d35f1c964fc93789a4201/MMM-forecast-io.js#L397

      posted in Utilities
      morozgrafixM
      morozgrafix
    • 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.

      posted in Utilities
      morozgrafixM
      morozgrafix
    • 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

      posted in Utilities
      morozgrafixM
      morozgrafix
    • 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.

      posted in Utilities
      morozgrafixM
      morozgrafix
    • 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.

      posted in Utilities
      morozgrafixM
      morozgrafix
    • 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:
      0_1512084362862_c2a6ef7c-9b0a-4027-a60f-041280daee24-image.png

      posted in Utilities
      morozgrafixM
      morozgrafix
    • 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.

      posted in Entertainment
      morozgrafixM
      morozgrafix
    • RE: Magic Mirror Discord Group

      @Mykle1 invite sent to email listed in your profile. Thanks.

      posted in General Discussion
      morozgrafixM
      morozgrafix
    • 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.

      posted in Troubleshooting
      morozgrafixM
      morozgrafix
    • 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.

      posted in Entertainment
      morozgrafixM
      morozgrafix
    • RE: IE11 / Edge browser black screen

      @Jayh391 No I didn’t run Edge in developer mode. I haven’t tested it extensively though.

      posted in Troubleshooting
      morozgrafixM
      morozgrafix
    • 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.

      posted in Troubleshooting
      morozgrafixM
      morozgrafix
    • 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.

      posted in Hardware
      morozgrafixM
      morozgrafix
    • 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 from 02 to 2 (allowed values for that field are 1 through 12). So it would read like module_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 language

      and 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.

      posted in Troubleshooting
      morozgrafixM
      morozgrafix
    • RE: Replacing snow flakes with hearts in the MMM-SNOW module

      @schlachtkreuzer6 nice job. I told you it wasn’t that hard. :clap: :thumbsup:

      posted in Troubleshooting
      morozgrafixM
      morozgrafix
    • 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.

      posted in Hardware
      morozgrafixM
      morozgrafix
    • 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.

      posted in Development
      morozgrafixM
      morozgrafix
    • 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.

      posted in Troubleshooting
      morozgrafixM
      morozgrafix
    • RE: Replacing snow flakes with hearts in the MMM-SNOW module

      @Hein-Jan reducing valenitnesCount may help with “sluggishness”.

      posted in Troubleshooting
      morozgrafixM
      morozgrafix
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 1 / 7