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

    Posts

    Recent Best Controversial
    • RE: Major problems loading new module page...

      @BKeyport Seems to load just fine for me.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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.

      82f5020c-447f-453a-91f4-3f42decd923f-image.png

      And working fine on each page:

      c892c013-28d5-4409-943e-28795d44223e-image.png

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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

      posted in Requests
      mumblebajM
      mumblebaj
    • 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.

      817bc357-c4cf-47cc-8ce7-c49777a0dd20-image.png

      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"
              }
          }
      }
      
      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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=nl to 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"
          }
        ]
      }
      
      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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.

      posted in Requests
      mumblebajM
      mumblebaj
    • RE: MagicMirror no longer launches

      @RIKKO14 You should then be able to run pm2 logs --lines 50 and that should return the details from the pm2 log. Hopefully it has any error details.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • RE: MagicMirror no longer launches

      @RIKKO14 How do you start MagicMirror?

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • 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

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • RE: MMM-NewsAPI

      @dondula Yeah, MMM-News was handed back to original author and archived. You should install MMM-NewsAPI and use that instead.

      posted in Utilities
      mumblebajM
      mumblebaj
    • 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.

      posted in Utilities
      mumblebajM
      mumblebaj
    • RE: MMM-NewsAPI

      @dondula I have just tested MMM-NewsAPI with the config that you have and it works just fine.

      b37aaee2-6c20-4c06-b2bc-4097776703c0-image.png

      Config used:
      dd0e04c0-6109-495f-b3d8-fe1986fa89eb-image.png

      Your key seems to be working fine as well using MMM-NewsAPI.

      posted in Utilities
      mumblebajM
      mumblebaj
    • 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.

      posted in Utilities
      mumblebajM
      mumblebaj
    • RE: MP3 Player

      @sdetweil and @bachoo786 There is a lot wrong with that code snippets. Can’t make it work the way it stands.

      posted in Development
      mumblebajM
      mumblebaj
    • 1 / 1