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.
    Online
    • Profile
    • Following 1
    • Followers 4
    • Topics 10
    • Posts 547
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Having difficulty starting my mirror. I really need some help

      @sdetweil said in Having difficulty starting my mirror. I really need some help:

      But it’s provided and is a ‘quick’ ‘win’ to get base up and running.

      I’ve had another setup running for a while now, which solves some of the problems but of course also has its drawbacks.

      It runs on Fedora with PM2. Why Fedora? Because I use bootc and therefore get automatic operating system updates. The downside is, of course, modules related to the Pi’s hardware, but the PIR sensor works.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: v2.22.0 | default calendar: no symbols with customEvents

      @sdetweil said in v2.22.0 | default calendar: no symbols with customEvents:

      you can pull down the develop branch and try it out.

      the fix is not on develop because it is not merged yet but it should not take a long time …

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-RAIN-MAP

      said in MMM-RAIN-MAP:

      but since today, the two lowest of my four zoom levels seem to have stopped working

      they are definitely gone …

      I used for several years

              mapPositions: [
                { lat: ${LAT}, lng: ${LON}, zoom: 9, loops: 1 },
                { lat: ${LAT}, lng: ${LON}, zoom: 8, loops: 1 },
                { lat: ${LAT}, lng: ${LON}, zoom: 7, loops: 1 },
                { lat: ${LAT}, lng: ${LON}, zoom: 6, loops: 1 },
              ],
      

      and now found in their docs Maximum zoom level is 7.

      Another restriction is that there is no forecast anymore (as already stated in the module readme).

      That’s a shame, it unfortunately devalues ​​the module.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Magic Mirror Update fail

      @Freddy_boy

      npm install node-fetch will install the latest version which is a v3.x

      mm does not support typescript and so needs a v2.x version.

      you have to look up the latest v2.x release and install this. This is a problem of MMM-Weather and should be fixed there.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-RAIN-MAP

      @KristjanESPERANTO

      colorScheme seems to be useless too, the docs only mention 2 which is the default in the module, if I try other values there is no difference.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Default Weather Module (Weathergov) stuck on loading

      @angeliKITTYx said in Default Weather Module (Weathergov) stuck on loading:

      https://api.weather.gov/gridpoints/AKQ/88,50/stations

      if I use the above url in the browser I get

      d569a817-abfd-41f4-88e5-64bb03fe50d3-grafik.png

      so you can wait or use another weather provider …

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-RAIN-MAP

      see https://github.com/rainviewer/rainviewer-api-example?tab=readme-ov-file#personal-use-api-limitations

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MM current version on Raspberry Pi 5 cannot turn off monitor

      @sdetweil

      and interesting idea being described for integrating older devices, like washing machine, is to monitor the power consumption with a smart plug… (I don’t know which do that in the US)

      thats exactly what I plan for my washing machine

      I wonder if the pi also has a lower consumption that can be measured and used as a trigger to turn off the smart switch when the power drops after pi shuts down…

      I ordered a smart plug from TuYa for this and tested this now with a raspberry pi 4.

      When the pi is running:
      pi_on.png

      After shutdown of the pi but red light of pi still on:
      pi_off_red_light.png

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-RAIN-MAP

      @KristjanESPERANTO

      I’m using https://globe.airplanes.live/ and they have a RainViewer Layer which still works when zooming in - maybe they use a license key …

      c3f43f6d-acdd-4c96-873b-b565e57b5ccd-grafik.png

      Another approach I played with is using german dwd data (problem: germany only), tested this in my MMM-Flights module:

      MMM-Flights-Radar.png

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: module.js mismatch error and good by os

      I think the fetch errors are related to https://github.com/MagicMirrorOrg/MagicMirror/issues/3329

      you can try the newest electron version or disable ipv6

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-Remote-Control Not working well after upgrade to 2.29

      @sdetweil

      I submitted a PR

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Default weather module stuck loading after latest MM update

      @sdetweil said in Default weather module stuck loading after latest MM update:

      @karsten13 dang I get that wrong EVERY time!

      one of the reasons I wrote my own njk …

      83d6bdf4-2130-45d9-9c83-72f2894fec3d-grafik.png

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Docker install on synology nas

      @oliv

      looks like the volumes on the host were created by root. The user in the container runs as user node with uid/gid 1000.

      So you can try

      a) cd to /volume1/docker/ on the host and run chown -R 1000:1000 ./magicmirror (you have to do this as root)

      or

      b) run the container as user root, you have to add

          --user root \
      

      to the docker run ... command

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Electron quit periodically

      @jefftse

      I deleted your config posted above because you published all your secrets in it …

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Cannot find module 'request'

      https://khassel.gitlab.io/magicmirror/docs/faq.html#error-cannot-find-module-request

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Issue with latest build of Karsten’s docker labwc container?

      fixed now, you can restart the pi (it will need some time to pull the new image before working) or

      cd /opt/mm/run
      docker compose pull
      docker compose up -d
      
      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Storing info locally

      see https://github.com/ianperrin/MMM-Strava

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-PublicTransportHafas - Error when loading - DeparturFetcher.mjs

      @p1lspeda said in MMM-PublicTransportHafas - Error when loading - DeparturFetcher.mjs:

      I’ve upgraded to the latest MM Version

      not really, 2.31.0-develop <> 2.31.0

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Calvin and Hobbs

      @plainbroke

      invested some time to grab the comic url, you can try my fork.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-ISS-Live error 153

      this is unrelated to mm, the default url used in the module is https://www.youtube.com/embed/yf5cEJULZXk?si=Dx852YRN5q6NHj0K and I see the same error 153 in my browser.

      Clicking on “Watch video on YouTube” will move you to https://www.youtube.com/watch?v=yf5cEJULZXk with the content “This live stream recording is not available.”

      So this NASA stream is at least currently not available …

      Maybe of interest for @KristjanESPERANTO

      posted in Troubleshooting
      karsten13K
      karsten13
    • 1 / 1