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

    Posts

    Recent Best Controversial
    • RE: struggle with MMM-Remote-Control and MMM-Buttons

      @Divis Looks like an action-name mismatch.

      MMM-Buttons should send REMOTE_ACTION values such as MONITORON and MONITOROFF.
      monitorOnCommand and monitorOffCommand are config keys in MMM-Remote-Control, not REMOTE_ACTION values.

      So in MMM-Buttons, try:

      • action: MONITORON
      • action: MONITOROFF
      posted in Development
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-CalendarExt2 - I want to change the first day of the week, but weekStart setting is not having an effect

      @eprostko I’m glad it’s working. The configuration of MMM-CalendarExt2 and the documentation are quite complex, so I completely understand if you’re having a hard time with it.

      Have fun with your project 😃

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-Google-Route and API Quotas

      @potts-mike I recommend opening an issue in the repository; not all module developers hang out here on the forum 🙂

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-CalendarExt2 - I want to change the first day of the week, but weekStart setting is not having an effect

      @eprostko And it would be great if you could format your code snippets a bit more clearly in the future like proper indentation and quotation marks. The way you wrote the config part is really hard to read and analyze 🙂

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-CalendarExt2 - I want to change the first day of the week, but weekStart setting is not having an effect

      @eprostko The issue is that modeOptions is not a valid configuration field in MMM-CalenderExt2. Where did you get that?

      weekStart needs to be set directly inside the view object:

      views: [
        {
          position: "top_bar",
          mode: "week",
          type: "row",
          weekStart: 0,        // ← here, at the top level of the view
          slotMaxHeight: "150px",
          slotCount: 3,
          // ...
        }
      ]
      

      The top-level weekStart: 0 in your config has no effect either - there’s no such top-level option, only the per-view (or defaultSet.view) one.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-Planetarium

      @Divis The color option should work, but it needs rgba() — hex values and named colors don’t support transparency:

      color: 'rgba(255,255,255,0.3)',
      
      posted in Education
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Laser-cut Magic Mirror frame (3mm plywood, 620×375 mirror)

      @fred2nice That’s cool! I’ve been thinking about getting a laser cutter for a while. That would be one more reason to do so - even though I don’t even need a new frame now 😅

      posted in Show your Mirror
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Periodic Table of Elements

      @Divis Thanks! 😃 There was some feedback with ideas in the repo. So not alone my achievement.

      posted in Requests
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Unable to change pages using MMM-page-indicator

      @British_Kiwi said:

      https://github.com/sdetweil/MMM-pages

      That is Sam’s fork. Please try the original module: https://github.com/edward-shen/MMM-pages.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Unable to change pages using MMM-page-indicator

      @British_Kiwi Which version of MMM-pages have you installed? I wonder why MMM-pages isn’t in your list of updated modules. Current version is 1.4.0.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-RAIN-MAP

      @JeanMichelC The markers are just visual pin icons on the map — they don’t define any area. A typical use case would be marking your home and workplace so you can easily spot them while watching the rain radar.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-Remote-Control

      @rkorell Thank you very much for this feedback and appreciation 🙂 It’s interesting that you took a deeper look at the changes.

      posted in Utilities
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-Remote-Control

      Hi @rkorell, thank you for the detailed bug report — the root cause analysis was spot on and made it straightforward to fix!

      The fix is included in v4.2.4: when MMM-Remote-Control detects it’s running under pm2 (via PM2_HOME or pm_id environment variables), it now skips app.relaunch() and only calls app.quit(), letting pm2 handle the restart cleanly.

      Would be great if you could confirm it works on your setup!

      posted in Utilities
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-Remote-Control

      Hi @vtek, glad you figured it out! Just for reference: when secureEndpoints: true is set, the API key can be passed in two ways:

      1. URL parameter: ?apiKey=YOUR_KEY
      2. HTTP header: Authorization: apiKey YOUR_KEY

      Also, starting with v4.2.4 the error message now directly hints at the solution, so the next person running into this should find it faster 🙂

      posted in Utilities
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-GooglePhotos refactor

      @petepetepete Nice! Why not create a PR? Maybe your changes flow into the original. That’s the cool thing about open source - working collaboratively on a project instead of everyone doing their own thing :)

      posted in Showcase
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Periodic Table of Elements

      @Divis I actually started something like this a long time ago, but never finished it. Because of your request, I dug it out again and made it work:
      https://github.com/KristjanESPERANTO/MMM-AtomVisualizer

      Does that help? 🙂

      posted in Requests
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: page-indicator css line

      @malvinas Someone had this problem once because they were using an old version of MagicMirror. Which version do you have?

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-RAIN-MAP

      @karsten13 said in MMM-RAIN-MAP:

      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.

      Thanks for that too! I just updated the docs.

      Another approach I played with is using german dwd data (problem: germany only)

      I’ve thought about that too, but it would probably be more a matter for a new module.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-RAIN-MAP

      @karsten13 Thanks for investigating! It’s really a shame. I’ll update the docs.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Das habe ich auf dem Spiegel

      @13KayRocky Looks nice! I would add page indicators at the top center so you can easily see which page you are on. This is possible with both MMM-pages and MMM-Carousel (you probably use one of them).

      This is my favorite styling - I came up with it with a teammate:

      screencast_5_rectangular-indicators.gif

      I use it with MMM-Carousel. But I only wrote an explanation for MMM-pages - here: https://github.com/edward-shen/MMM-page-indicator#styling.

      posted in Show your Mirror
      KristjanESPERANTOK
      KristjanESPERANTO
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 22
    • 23
    • 5 / 23