• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

New module: Weather effects

Scheduled Pinned Locked Moved Entertainment
27 Posts 4 Posters 1.4k Views 4 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    cgillinger
    last edited by cgillinger Dec 28, 2024, 11:56 AM Dec 28, 2024, 11:52 AM

    Earlier, I shared a module that makes it snow on MagicMirror — as soon as you start it, snowflakes begin to fall. When I first created it, I thought it would be cool if it only showed snow when it was actually snowing.

    @sdetweil gave me the idea that MagicMirror’s default weather module broadcasts notifications, so you can let the module pick up its notification using the following code:

    if (this.weatherProvider.currentWeather()) {
    	this.sendNotification("CURRENTWEATHER_TYPE", { type: this.weatherProvider.currentWeather().weatherType.replace("-", "_") });
    }
    

    So, I experimented a bit and got it to work! While I was at it, I also added rain. That is, if the weather module reports rain, raindrops will fall on the MagicMirror screen as well.

    I should mention that so far, I’ve only tested this with the Swedish weather provider SMHI, but it should work with the others too.

    I’ve tried to ensure that the annotations in the script and CSS make it reasonably easy to follow and understand if someone wants to tweak it themselves.

    Screenshot:
    Rich snow
    rich.png
    Light snow (for Raspberry Pies etc)
    light.png
    Rain
    Rain.png

    Also, for obvious reasons this module requires the standard weather module to be active issuing “CurrentWeather” statuses.

    https://github.com/cgillinger/MMM-WeatherEffects

    M 1 Reply Last reply Dec 29, 2024, 1:17 PM Reply Quote 4
    • U Offline
      uros76
      last edited by Dec 29, 2024, 8:26 AM

      Excellent! I was hoping someone would come up with this idea and module 😊. Thanks for this.
      I have added allowOverrideNotification: true to the weather module config. At the moment we don’t have any rain or snow falling so can’t really confirm it works.

      Can you share more about how to check the console for weather notifications?

      My magicmirror projects: https://forum.magicmirror.builders/post/79889, https://forum.magicmirror.builders/post/93241 and https://forum.magicmirror.builders/post/94586

      U 1 Reply Last reply Dec 29, 2024, 8:32 AM Reply Quote 1
      • U Offline
        uros76 @uros76
        last edited by Dec 29, 2024, 8:32 AM

        I just inspected the pm2 log and under the latest entries I can’t see anything about weather module broadcasting notifications.
        Do I need to looks somewhere else?

        My magicmirror projects: https://forum.magicmirror.builders/post/79889, https://forum.magicmirror.builders/post/93241 and https://forum.magicmirror.builders/post/94586

        S C 2 Replies Last reply Dec 29, 2024, 12:25 PM Reply Quote 0
        • S Offline
          sdetweil @uros76
          last edited by Dec 29, 2024, 12:25 PM

          @uros76 weather is done all in browser, so no messages would appear in the pm2 log

          you could install MMM-Notifications which has a window showing those events

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          1 Reply Last reply Reply Quote 0
          • C Offline
            cgillinger @uros76
            last edited by cgillinger Dec 29, 2024, 12:43 PM Dec 29, 2024, 12:41 PM

            I dont think PM2 shows module-specific broadcasts unless explicitly logged, but Im no expert. Maybe @sdetweil knows?

            To test it I just bascially found locations with rain or snow, and set that in config.js.

            S U 2 Replies Last reply Dec 29, 2024, 1:08 PM Reply Quote 0
            • S Offline
              sdetweil @cgillinger
              last edited by sdetweil Dec 29, 2024, 1:14 PM Dec 29, 2024, 1:08 PM

              @cgillinger correct. notifications are not logged

              1 they are in browser
              2 if the sending or receiving module does not console.log() a message there is nothing to see

              you can install MMM-Logging which will capture the browser console and merge it with the npm start output

              or install MMM-Notifications which will display them in a window on the MagicMirror screen

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 1
              • M Offline
                mmmallday @cgillinger
                last edited by Dec 29, 2024, 1:17 PM

                @cgillinger Very cool well done

                1 Reply Last reply Reply Quote 1
                • U Offline
                  uros76 @cgillinger
                  last edited by Dec 29, 2024, 3:19 PM

                  @cgillinger duh, why didn’t I think of setting to a city where it rains LOL. I picked a random rainy city and presto, it works! Tnx again for this module.

                  @sdetweil thanks. I installed the MMM-Logging and checked the npm start console for any hint of notifications coming through but I can’t see anything related to notifications being broadcasted. I am probably missing something obvious again :(
                  And I can’t seem to find the MMM-Notifications location. Do you perhaps have a link to it?
                  I did thind this one but it doesn’t show anything https://github.com/glitch452/MMM-ViewNotifications

                  My magicmirror projects: https://forum.magicmirror.builders/post/79889, https://forum.magicmirror.builders/post/93241 and https://forum.magicmirror.builders/post/94586

                  S 2 Replies Last reply Dec 29, 2024, 4:20 PM Reply Quote 1
                  • S Offline
                    sdetweil @uros76
                    last edited by sdetweil Dec 29, 2024, 4:24 PM Dec 29, 2024, 4:20 PM

                    @uros76 yes, it was https://github.com/glitch452/MMM-ViewNotifications

                    it shows for me

                    Screenshot at 2024-12-29 10-23-46.png

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    C U 2 Replies Last reply Dec 29, 2024, 4:28 PM Reply Quote 0
                    • C Offline
                      cgillinger @sdetweil
                      last edited by cgillinger Dec 29, 2024, 4:49 PM Dec 29, 2024, 4:28 PM

                      And I just want to add here that I’m running it on a Raspberry Pi with a 7-inch screen, so there’s not much screen space to work with. I don’t have room for the weather module with the ‘current’ option as well. However, after testing, it seems to work perfectly fine to keep the module ‘hidden’ by simply omitting a location in the config.js file

                      I’m considering making the rain direction controlled by the wind direction from the Weather module. If it’s possible, it would look pretty neat.

                      S 1 Reply Last reply Dec 29, 2024, 4:29 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 1 / 3
                      1 / 3
                      • First post
                        1/27
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy