@sdetweil There is a simple api call from the site to get the metar data whicg might be simpler to use.
Read the statement by Michael Teeuw here.
Posts
-
RE: Can anyone revive AviationWX, PilotWX, or TAF
-
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: Squashed Display
@sdetweil Thanks Sam. I found the problem. It is related to a module I am running. Been debugging and when I disabled that module the display takes up the whole screen as it should.
-
RE: Hello everyone, do you know if there is an MM module for rugby
@Manu85 I saw your request to him. The module is not built for you and only you. Others are using it right now. You don’t seem to appreciate and understand the complexities around the data and how it the API’s are defined.
This module is being used by a number of people, and unless you raise a feature request and everybody agree to request will I entertain the idea. What you are asking for is not easily achievable with the way the API calls are structured.
For my own personal use the module is fine as is.
I hope you come right but this matter I consider closed now and module will remain as is.
-
RE: RSS newsfeed ‘en français’
@earnestrichards You could try my MMM-NewsAPI and selet country fr to get all French news.
https://github.com/mumblebaj/MMM-NewsAPI.gitYou could also try MMM-NewsFeed by @bugsounet .
https://github.com/bugsounet/MMM-NewsFeed.git -
RE: Any slideshow / wallpaper modules that can pull from OneDrive?
@hermanho Nice work. Please add it to the 3rd Party Modules Page as well. Looks great!
-
RE: Hello everyone, do you know if there is an MM module for rugby
@Manu85 Way too much work. You are welcome to can make a PR.
-
RE: MMM-NewsAPI after MM2.25.0 update
@sdetweil Thanks for the assist with this one Sam but my module does list the dependencies on Github. Check it out.
-
RE: Considering taking donations to support the MagicMirror project. Interested in your thoughts!
@MichMich Thanks for this project. I made my donation. Sorry it has taken so long after you posted this but I don’t get much time to spend on the forum. It is because of this project that I am now developing skills for Alexa. Thanks for inspiration. I have been running my mirror for close to a year now and it has been a great journey. Not sure if there are any other users from South Africa using this but I have had fun with it and it amazes my friends and family. Keep up the good work and I hope my donation will at least buy you 1 or 2 cold ones at the pub
-
RE: Has anyone been able to get MMM-PetFinder to work?
@ChrisLeduex Never use sudo to install anything on your mirror. Ideally you want to be in the module folder that requires request, i…e
cd ~/MagicMirror/modules/MMM-PetFinder/. Once in the folder you want to then installrequest,npm i request. You can ignore the funding stuff. -
RE: Developer Wanted to Create A Module to Add Notion Pages to MM
@emile-gasbarri You can have a look at the 3rd Party module page. There is a module for Notion already on there. Have a look at that and see if it meets your needs. If not then you could raise an enhancement to the developer of the module on his Github page.
-
RE: Need help with MMM-MQTTbridge not "communicating" with MMM-RTSPStream
@Cr4z33 said in Need help with MMM-MQTTbridge not "communicating" with MMM-RTSPStream:
MMM-RTSPStream
The position is incorrect. There is no
middle\_centerposition. -
RE: MMM-SystemStatsHow to change color of the icons.
@cdanielgallegos The module does not have a stylesheet and runs off the main.css. You could set the following in the custom.css but it will change the color for all the rows as they all have a class of “title” and the values have a class of “value”. That is about as much as I could get with it.
.MMM-SystemStats .title { font-size: 25px; color: orangered; } .MMM-SystemStats .vlue { color: blue; }
-
RE: MMM-NOAA3 not working since last update
The issue was that I had to specify the lon and lat manually in the config.js.
-
RE: Reverting to previous MM Release
@sdetweil Flashed the new card and installed trixie, Did a clean install. Ran your restore script and everything is running just fine.
-
RE: module not found error loading module in MagicMirror
Maybe this can help some users.
The following will search all *.js files in the modules folder for the reference of request. You can then just enter the module folders and install as per @sdetweil suggestion above. The same can be done for the other missing modules.
grep -r -E '('request')' ~/MagicMirror/modules/*/*.jsor search for multiple problem modules
grep -r -E '('request') | ('valid-url')' ~/MagicMirror/modules/*/*.jsProduces the following:


