@Eagleyes27 I recently updated the NOAA3 module. You can use my fork which you can find here: NOAA3.
Read the statement by Michael Teeuw here.

Posts
-
RE: not updating
-
Accuweather Updates
AccuWeather Updates coming
As received this evening from AccuWeather.
AccuWeather is excited to share important updates coming this summer to the AccuWeather API Developer Portal, which is designed to elevate your experience and ensure you get the most from our industry-leading weather data.
What is Changing? To better support your development needs, AccuWeather is introducing a more powerful and streamlined platform, along with updated subscription options to suit every stage of your journey:
• Discontinuation of Free Limited Trial Packages
AccuWeather’s current Free Limited Trials for Core Weather and MinuteCast® will be retired with the new portal launch.
• Introducing New 14-Day Free Trials
Experience the full value of our APIs with an all-new 14-Day Core Weather Trial (up to 500 API calls/day) or 14-Day MinuteCast® Trial (up to 50 calls/day), including all API endpoints available for testing.
• New Low-Cost Starter Package
Once your trial ends, you can keep building with our affordable Starter package, which offers essential API access at a competitive monthly rate.
• Enhanced Account Security
To best protect your data and improve overall security, existing users on Standard, Prime, Elite, or MinuteCast® packages will be prompted to reset their passwords at launch.
• What to Expect
As AccuWeather approaches the launch, we will provide step-by-step guidance on migrating your account, selecting a new plan, and maximizing the benefits of the updated portal. We remain committed to delivering the tools and data you rely on — with a seamless, modernized experience to match. To stay informed, visit developer.accuweather.com.
Thank you for choosing AccuWeather®, the world’s most trusted and accurate source of weather forecasts and warnings. We look forward to supporting your development journey with reliable, scalable, and trusted weather data solutions. -
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz Do you mind sharing your ICS, anonymized off course.
-
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz You can do the following from the docker host,
docker compose up -d
this will launch you container. Then you can run the following commanddocker exec -it magicmirror bash
replacingmagicmirror
with your container name. This essentially puts you into the MagicMirror directory. You can then acces the debug log from there. -
MMM-OpeningHours
I have been using the MMM-OpeningHours module for a few years now and it has always been working great and probably still works for all users of the modules by @Menturan . Thanks for an awesome module.
Google has replaced the library
@google/maps
with a newer library@googlemaps/google-maps-services-js
. I must mention that the old library still works.I have updated the module to use the latest library from google and have refactored the node_helper.js code a bit. I have also update the package.json and the README and have opened a PR. As the module has been last updated about 3 years ago I am not sure if it is still maintained.
If anybody want to switch to the newer version you are welcome to use my fork. I just love this module as I can track all my fav places.
You can find the fork here: MMM-OpeningHours
-
RE: Starting MM Crontab
@sdetweil A few things:
The main issue being:
MagicMirror is now using a flat npm config, and the start scripts are handled differently,node --run start:x11
is not a valid Node.js command — unless you are using a custom wrapper or an internal script, this will fail silently or do nothing.As Crontab runs in a minimal environment, so any graphical (X11) application must explicitly export DISPLAY. Previously I had the command as
DISPLAY=:0 npm start
. Now, I had toexport DISPLAY=:0
first and then start MM. -
RE: Starting MM Crontab
@sdetweil Stupid question, how do I mark this as resolved?
-
RE: Starting MM Crontab
@sdetweil Hi Sam. I have always used npm. I have just been reading through the PR-3764 and i agree with your arguments in that it could have breaking affects for how we do things as both users and devs. Case in point.
However, the forum is about new things and moving forward, so I agree with @KristjanESPERANTO on that point of view as well.
I have now resolved my script issue and am now able to launch from the cron again. 😉
For somebody who may have the same issue, this is how I solved for it.
export DISPLAY=:0 cd ~/MagicMirror npm run start:x11
The above has solved it for me now.
-
RE: Starting MM Crontab
@KristjanESPERANTO Thanks Kristjan. But I don’t see how updating MM could cause this. I only updated MM with Sam’s upgrade script. Don’t see how that has changed anything with regards to how Crontab works. Maybe it is related to changing the launch to
node --run start
. I can see the command being fired in the log but it does not launch MM like it did before the upgrade.Anyhow, I manually launch it for now till I find a suitable solution.