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

    Posts

    Recent Best Controversial
    • RE: MMM-RAIN-MAP (new: version 2.x)

      @jalibu

      Unfortunately, I can’t tell you that. I am only responsible for the display layer, not for the weather data 🙂

      I’m aware of this …

      Is it the usual case on your mirror that the displayed radar images do not match the reality?

      saw such differences this week the first time

      What I can see is that RegenRadar.de and RainViewer have different scales. With RainViewer it needs a much higher degree of cloudiness to be displayed on the map.

      will oberve this but the differences are heavy and AFAIS not only explainable with the different scales. Meanwhile I was already asking myself if the rain layer is showing a total different location …

      posted in Utilities
      karsten13K
      karsten13
    • RE: Start magic mirror server with arguments

      @dorianhawkmoon

      you can run

      MM_CONFIG_FILE=config/config.js npm run server

      and

      MM_CONFIG_FILE=config/config2.js npm run server

      Same works for npm run start.

      You have to use different ports in your configs.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: raspi 64 bit available

      If you use the WebUI the changes are made here:

      pi@pi4:~ $ cat /usr/share/dispsetup.sh
      #!/bin/sh
      if ! grep -q 'Raspberry Pi' /proc/device-tree/model || (grep -q okay /proc/device-tree/soc/v3d@7ec00000/status 2> /dev/null || grep -q okay /proc/device-tree/soc/firmwarekms@7e600000/status 2> /dev/null || grep -q okay /proc/device-tree/v3dbus/v3d@7ec04000/status 2> /dev/null) ; then
      if xrandr --output HDMI-1 --primary --mode 1920x1080 --rate 60.000 --pos 0x0 --rotate normal --output HDMI-2 --off --dryrun ; then
      xrandr --output HDMI-1 --primary --mode 1920x1080 --rate 60.000 --pos 0x0 --rotate normal --output HDMI-2 --off
      fi
      fi
      if [ -e /usr/share/tssetup.sh ] ; then
      . /usr/share/tssetup.sh
      fi
      exit 0
      

      So editing this script should work for command line.

      posted in General Discussion
      karsten13K
      karsten13
    • RE: Automatic checking of all MagicMirror² modules

      @KristjanESPERANTO said in Automatic checking of all MagicMirror² modules:

      After you showed me the examples, I tinkered a bit with a simple frontend (without dependencies): check it out. I just have to fill it with real data.

      cool, exactly what I thougth of …

      looking at your example json

        {
          "name": "MMM-PublicTransportHafas",
          "image": "https://raw.githubusercontent.com/KristjanESPERANTO/MMM-PublicTransportHafas/main/img/Goerdelerring_all.png",
          "maintainer": "KristjanESPERANTO",
          "link": "https://github.com/KristjanESPERANTO/MMM-PublicTransportHafas",
          "category": "Traffic",
          "tags": ["Schedule", "Public Transport", "Traffic", "HAFAS"],
          "text": "This module displays real-time departure times for public transportation.",
          "description": "Stay informed about the upcoming departures from your local public transit stations."
        },
      

      there are only a few things which are not available via github api (image, category).

      category and tags are similar, do we still need a category?

      tags are similar to api topics (may without magicmirror key words)

      posted in Development
      karsten13K
      karsten13
    • RE: MMM-OpenWeatherMapForecast stuck on Loading....

      @sdetweil

      the default weather module still uses 2.5 and it works

      at the moment, yes.

      I looked into their api stuff and onecall v2.5 is not mentioned anymore. The normal endpoints weather and forecast are still on v2.5.

      Problem: For onecall 3.0 you need a special api key (as already mentioned here) with a subsciption where you have to give your payment data (1000 request free per day, limit is 2000 per day but you can set your limit to 1000 if you want it for free … ).

      I think we will get problems/questions to this for the default weather module too.

      So (for default weather module) if you use endpoints weather and forecast and old onecall v2.5 everthing works out of the box with old api keys, if someone use new onecall v3.0 he needs an api key for 3.0 and has to set apiVersion: "3.0", in the config …

      posted in Utilities
      karsten13K
      karsten13
    • RE: MMM-Hue CORS Policy Issue

      @mumblebaj

      you can test the following, I couldn’t test this completely but the cors error was gone in my tests.

      First yo need to create own certs, go into the config folder of mm (same folder where config.js is located) and run this command:

      openssl req -newkey rsa:4096 \
                  -x509 \
                  -sha256 \
                  -days 3650 \
                  -nodes \
                  -out example.crt \
                  -keyout example.key \
                  -subj "/C=DE/ST=Hessen/L=Frankfurt/O=MagicMirror/OU=MM/CN=www.example.com"
      

      Then edit your config.js and add the following lines under the line with var config = {

      	electronOptions: {
      		webPreferences: {
      			webSecurity: false
      		}
      	},
      	useHttps: true,
      	httpsPrivateKey: "config/example.key",
      	httpsCertificate: "config/example.crt",
      

      (Re)Start mm and test if MMM-Hue works now (there will still be a “mixed content” warning).

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: updatenotification

      @Ray said in updatenotification:

      is it possible to instruct ignoremodules not to look for MagicMirror updates

      looking at the sources this is not possible at the moment but it is easy to implement. Can you open an issue on github for this? Thanks.

      posted in General Discussion
      karsten13K
      karsten13
    • RE: Automatic checking of all MagicMirror² modules

      @KristjanESPERANTO

      from your todo list

      Is there also a GitLab API?

      yes, as example you can look at MMM-RepoStats

      Another thing is what the source of the list should be, still the wiki (which is very error prone since anyone can edit things).

      Alternatively, you could store a list in your repo and we need something for users to add to their repo (e.g. as a PR in the repo or with website functionality).

      But maybe there are even better ideas.

      posted in Development
      karsten13K
      karsten13
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      @sdetweil

      http://pirateweather.net

      posted in Utilities
      karsten13K
      karsten13
    • RE: MMM-Hue CORS Policy Issue

      @fozi thanks but … no

      would be better to have a solution without https, may someone else gets this figured out.

      As an improvement for the above solution with https:

      Holding the certs in the config directory makes them accessible from outside so better move them into a new directory beside config, e.g. certs which is not exposed. Don’t forget to update config.js afterwards.

      posted in Troubleshooting
      karsten13K
      karsten13
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 10
    • 11
    • 4 / 11