@BKeyport Seems to load just fine for me.
Read the statement by Michael Teeuw here.
Posts
-
RE: Major problems loading new module page...
-
RE: The installation instructions are broken.
@sdetweil Maybe the getting started document/page must be updated to reflect usage of your script. The old initial method is outdated and you script is so much easier and would save lots of user pain and grief.
-
RE: MMM-BirdNET issue with MMM-pages
@geronimodupree You may want to comment out both the suspend and resume modules. I have and it works just fine.

And working fine on each page:

-
RE: MMM-BirdNET issue with MMM-pages
@geronimodupree I think the following is the problematic code.
resume: function() { this.updateTimer = setInterval(()=> { this.updateData(); }, this.config.updateInterval); this.schedulePopInterval(); },You can comment that out and it should work as expected. When MMM-pages “resumes” the module, the module forces a refresh.
-
RE: Trash schedule module
@angeliKITTYx You may want to have a look at MMM-MyGarbage. Looks like it may do what you want. You can setup your own schedule with it.
OR
You could look at the following one as well.
MMM-MyWastePickup -
RE: EveryNews: need ID's for Dutch news
@Peter Sorry about that Peter. If there is nothing further please remember to mark as resolved.
There is another option. You can use my module, MMM-NewsAPI which has a language option. It will bring up news from multiple source with the language of
nl.Just follow the instructions on the Github page.

You can use your existing NewsAPI apiKey.
You can use the following configuration.
{ module: "MMM-NewsAPI", //header: "news", position: "bottom_center", disabled: false, config: { apiKey: "your-api-key-goes-here", choice: "headlines", pageSize: 20, sortBy: "publishedAt", drawInterval: 1000*30, templateFile: "template.html", fetchInterval: 1000*60*60, query: { country: "", category: "", q: "", qInTitle: "", sources: "", domains: "", excludeDomains: "", language: "nl" } } } -
RE: EveryNews: need ID's for Dutch news
@Peter You can post the following in your browser.
https://newsapi.org/v2/top-headlines/sources?apiKey=add-your-api-key-here
This will return all news sources and you can look for more in your country or region.
-
RE: EveryNews: need ID's for Dutch news
@Peter why not just use your country code as input? That would pull news from all available sources for your specific country. I do not think that they have a list of specific sources.
you can add
&country=nlto the end and it will filter just nl. From what I have seen is that nl only has one provider,{ "status": "ok", "sources": [ { "id": "rtl-nieuws", "name": "RTL Nieuws", "description": "Volg het nieuws terwijl het gebeurt. RTL Nieuws informeert haar lezers op een onafhankelijke, boeiende en toegankelijke wijze over belangrijke ontwikkelingen in eigen land en de rest van de wereld.", "url": "https://www.rtlnieuws.nl/", "category": "general", "language": "nl", "country": "nl" } ] } -
RE: EveryNews: need ID's for Dutch news
@Peter You can have a look at the sources section on the module page. It provides a link to obtain sources.
-
RE: Developer Wanted to Create A Module to Add Notion Pages to MM
@emile-gasbarri Hi. Sorry, I do not have any time to do this.
-
RE: MagicMirror no longer launches
@RIKKO14 You should then be able to run
pm2 logs --lines 50and that should return the details from the pm2 log. Hopefully it has any error details. -
RE: MagicMirror no longer launches
@RIKKO14 How do you start MagicMirror?
-
RE: MagicMirror no longer launches
@RIKKO14 Also, are there any errors where you start MM? If you start it using pm2 then the pm2 logs need to be checked. If NPM then check the terminal where you run npm from.
-
RE: MagicMirror no longer launches
@RIKKO14 I know Sam would want to have a look at the upgrade log. Can you check that for any errors? I think it is in the installers directory.
-
RE: MagicMirror no longer launches
@RIKKO14 My suggestion would be to use the script from Sam. See his Github for script details. Use his upgrade script .
https://github.com/sdetweil/MagicMirror_scripts
Run the upgrade script and then run it with apply
-
RE: MMM-NewsAPI
@dondula Yeah, MMM-News was handed back to original author and archived. You should install MMM-NewsAPI and use that instead.
-
RE: MMM-NewsAPI
@dondula Just thinking out loud, there was a MMM-News which has been archived now I believe. I handed it back to the original author of the module. You can install MMM-NewsAPI if you like? Same config, just need to update the module name in the config.js from MMM-News to MMM-NewsAPI.
-
RE: MMM-NewsAPI
@dondula I have just tested MMM-NewsAPI with the config that you have and it works just fine.

Config used:

Your key seems to be working fine as well using MMM-NewsAPI.
-
RE: MMM-NewsAPI
@dondula said in MMM-NewsAPI:
/home/pi/MagicMirror/modules/MMM-News/node_modules
Unfortunately this shows MMM-News and not MMM-NewsAPI. Can you show me the module detail in the
~/MagicMirror/config/config.js? Everything except your API key. -
RE: MP3 Player
@sdetweil and @bachoo786 There is a lot wrong with that code snippets. Can’t make it work the way it stands.