A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Introduction

    General Discussion
    2
    0 Votes
    2 Posts
    4k Views
    plainbrokeP
    @AidenTurner Welcome to the Forum.
  • MMM-BambuLabNotify - 3D printer notifications

    Utilities
    10
    1 Votes
    10 Posts
    5k Views
    L
    @sdetweil Thank you!
  • https://github.com/SWhardfish/MMM-SchoolLunch

    Education
    1
    2 Votes
    1 Posts
    250 Views
    S
    A MagicMirror² module that displays today’s school lunch menu from Matilda Platform for schools in Sweden. ✨ Features Shows today’s main lunch and optional vegetarian option. Configurable school (via ID from Matilda Platform). Configurable module title. Optional icon in the title. Configurable update interval. Customizable fallback text when no menu is available. Fully styleable via custom.css.
  • 0 Votes
    7 Posts
    7k Views
    karsten13K
    @ember1205 duplicate of https://forum.magicmirror.builders/topic/19759/adds-blocking-posts?_=1757012860643
  • MMM-CalDAV

    Productivity
    97
    0 Votes
    97 Posts
    33k Views
    S
    @MrPringless I do not know the inner workings of the module. typically module not found means npm install for the module was not done or the package.json for the module didn’t list the library dependency. MMRIZE is very good on that point, so I don’t the second is the reason… but thanks for the nudge… my backup/restore scripts will save/restore extra files discovered in a modules folder… but files with leading dot are hidden by convention… so I will have to check that I would not have picked up the .env file… fixed… thx
  • MMM-Spotify

    Entertainment
    249
    7 Votes
    249 Posts
    246k Views
    S
    @kinggiotai I answered your questions above
  • new update/upgrade script, ready for testing

    General Discussion
    328
    6 Votes
    328 Posts
    609k Views
    S
    @Socrates note that without adding a parameter The script does nothing. It only tests the ability to update the base MagicMirror Update is two pass process Test. Make no changes Do. Apply the changes (with the parameter apply) Many users have modified MagicMirror base code not knowing about the config and css file design. These changes block the ability to update normally Over time they forget that they changed the files and what they actually changed. The force way to install is to wipe all changes, but now the result doesn’t work like it used to. Adding a lot of frustration.
  • No quarterly update?

    General Discussion
    3
    0 Votes
    3 Posts
    4k Views
    BKeyportB
    @sdetweil Doh. I’m thinking IRS quarters. Jan, Apr, Jun, Sep. 🤣🤣
  • Request: Flight tracker using PiAware

    Solved Requests
    14
    0 Votes
    14 Posts
    1k Views
    J
    @Exndfan – ok, thanks.
  • Filter by assignee

    Utilities
    1
    0 Votes
    1 Posts
    123 Views
    A
    Re: MMM-Chores - Manage and keep track of your household Chores Is there a way to filter the chores list by who the chore is assigned to?
  • MMM-doomsDay

    Unsolved Requests
    4
    0 Votes
    4 Posts
    3k Views
    S
    @uditdevsen you can open an issue on the repo as one alternative
  • Help with mmm-systemtemperature error messages

    Solved Troubleshooting
    11
    0 Votes
    11 Posts
    1k Views
    KristjanESPERANTOK
    FYI: I’ve created a fork, refactored it and optimized the README. It should be easier to install :-)
  • Embed Grafana Charts - xframe issue

    Solved Troubleshooting
    3
    0 Votes
    3 Posts
    2k Views
    R
    @hs said in Embed Grafana Charts - xframe issue: allow_embedding=true For future me and of course anyone else looking for this, the setting is in the [Security] section of /etc/grafana/grafana.ini (Assumes Grafana is hosted on a Pi or other Linux distro)
  • *Newly created module - MMM-Planefinder*

    Utilities
    2
    2 Votes
    2 Posts
    3k Views
    KristjanESPERANTOK
    @Exndfan Nice. Don’t forget to add it to the modules list :-)
  • Two Mirrors, One Pi

    Solved Troubleshooting
    4
    0 Votes
    4 Posts
    2k Views
    S
    @JoeRonimo were you able to work on any of this?
  • 2.32.0 Calendar module limitDays and excludedEvents stopped working

    Solved Troubleshooting
    41
    0 Votes
    41 Posts
    5k Views
    S
    @AndyHazz these fixes are in the next release Oct 1
  • Calendar does not run on secondary screen

    Solved Troubleshooting
    14
    0 Votes
    14 Posts
    1k Views
    S
    This fix is in the next release , Oct 1
  • Error Message Help

    Unsolved Troubleshooting
    3
    0 Votes
    3 Posts
    385 Views
    G
    thanks, Sam, I’ll try that tomorrow morning. Appreciate the response!
  • mm watching disabled?

    Solved Troubleshooting
    4
    3
    0 Votes
    4 Posts
    4k Views
    S
    @Periz another thing I didnt mention that could lead you from the pm2 status output The column Uptime tells you how long the app has been running 0 is a bad sign The column to the right of Uptime Shows the count of restarts for the app large numbers are not good
  • 0 Votes
    7 Posts
    2k Views
    wishmaster270W
    @Madeline Hi and sorry for my late replay. First of all… Please take care that the answer of @sophiasteck contains some misleading information as the array is called cams and not cameras and the module only supports referencing the cameras by their name and Not their ids. Additionall there exists no flag showStream. The cams array contains objects which need at least the name defined. According to the logs you posted your config should look something like… { module: "MMM-SynologySurveillance", position: "middle_center", config: { debug: true, ds: [ { protocol: "https", host: "x.x.x.x", port: "xxxx", user: "xxxx", password: "xxxxxx", cams: [ { name: "Back Doors" }, { name: "Pool Cam"}, { name: "Indoor Kitchen"} ], }, ], }, },