A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Modules are not displayed on all display devices

    Solved
    3
    0 Votes
    3 Posts
    177 Views
    kusselinK
    @sdetweil it is the MMM-RNV module but now it is going thank you
  • Calendar, MMM-CalendarExt3, and MMM-Carousel

    Solved
    7
    0 Votes
    7 Posts
    710 Views
    M
    @jubbles To show 3 sequenced month-instances of the CX3 modules; { module: "calendar", header: "US Holidays", position: "top_left", config: { maximumEntries: 100, maximumNumberOfDays: 365, calendars: [ { symbol: "calendar-check", url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics" } ] } }, { module: "MMM-CalendarExt3", position: "bottom_bar", config: { instanceId: "THISMONTH", mode: "month", } }, { module: "MMM-CalendarExt3", position: "bottom_bar", config: { instanceId: "NEXTMONTH", mode: "month", monthIndex: 1, } }, { module: "MMM-CalendarExt3", position: "bottom_bar", config: { instanceId: "NEXTNEXTMONTH", mode: "month", monthIndex: 2, } }, I don’t use MMM-Carousel, so get a help from others.
  • MMM-News-QR: it works but....

    Unsolved mmm-news-qr
    3
    0 Votes
    3 Posts
    337 Views
    KristjanESPERANTOK
    If this happens try to set useCorsProxy to false in your feed config. Like this: modules: [ { module: "newsfeed", position: "top_right", config: { feeds: [ { title: "tagesschau.de", url: "https://www.tagesschau.de/xml/rss2/", useCorsProxy: false } ] } }, { module: "MMM-News-QR", position: "top_right", config: { updateType: "push", interval: 2000, animationSpeed: 2500, colorDark: "#fff", colorLight: "#000", imageSize: 150 } } ]
  • Google Keep setup

    Unsolved
    8
    0 Votes
    8 Posts
    884 Views
    A
    @MMRIZE thank you I am still failing miserably at getting the gkeepapi to work with the mmm google keep module. It’s been 10 days of Me working on it no luck
  • Default module: Compliments is day_sunny working?

    Solved
    2
    0 Votes
    2 Posts
    130 Views
    S
    @bdeelman said in Default module: Compliments is day_sunny working?: MMM-OpenWeatherForecast it uses //broadcast weather update this.sendNotification(“OPENWEATHER_FORECAST_WEATHER_UPDATE”, payload); that module is not the default/weather module
  • MMM-PIR

    Solved
    6
    0 Votes
    6 Posts
    483 Views
    S
    @JMac said in MMM-PIR: (you) think the mode 4 for HDMI in this module I do not know the details of this module modes
  • Trouble Integrating MMM-OpenWeatherMapForecast with OpenWeather API v3.0

    Solved
    29
    0 Votes
    29 Posts
    2k Views
    S
    @Socrates Ah that makes sense. Yes i did use sudo. You are right. Will follow the guidelines now.
  • Camera Access on PC (windows 10) based Magic Mirror Issue

    Unsolved
    6
    0 Votes
    6 Posts
    322 Views
    S
    @sunilstark one of my modules, MMM-SleepWake, uses a camera for motion detection… well, it uses a system library (the motion project) to report motion events, but does not have a windows version…
  • Unable to get my google calendar to sync with MMM-MonthlyCalendar. Is it compatible?

    Unsolved
    2
    0 Votes
    2 Posts
    178 Views
    S
    @moosespectacles this module uses the default calendar module to read the ics data , and then broadcast it to other modules. so move the url to the default calendar, make sure it works, then comment out the default calendar position // position: … and use monthly calendar as you expect
  • Calendar error message.

    Unsolved
    2
    0 Votes
    2 Posts
    166 Views
    S
    @foggy the ‘logs’ are the stdout from the magicmirror app (npm run server) I don’t know where those are in a container
  • Time format

    Solved
    4
    0 Votes
    4 Posts
    204 Views
    S
    @Peter awesome, can you mark this resolved
  • Calendar maximumEntries vs. maximum height

    Solved
    4
    0 Votes
    4 Posts
    296 Views
    S
    @MikeBishop can you mark this resolved? click the 3dots beside the post that best articulates the answer
  • Not updating at midnight...

    Solved
    24
    0 Votes
    24 Posts
    2k Views
    S
    @BKeyport said in Not updating at midnight...: start: function () { function scheduleMidnightUpdate() { const now = new Date(); const nextMidnight = new Date(now); // Set the time to midnight nextMidnight.setHours(24, 0, 0, 0); // Calculate the time remaining until the next midnight const timeUntilMidnight = nextMidnight - now; // Schedule the updateDom method to be called at midnight setTimeout(() => { this.updateDom(); // Reschedule the update for the next midnight scheduleMidnightUpdate.call(this); }, timeUntilMidnight); } }, I would do it like this , much more straight forward function scheduleMidnightUpdate() { const now = new Date(); const nextMidnight = new Date(now); // Set the time to midnight nextMidnight.setHours(24, 0, 0, 0); // Calculate the time remaining until the next midnight const timeUntilMidnight = nextMidnight - now; // Schedule the updateDom method to be called at midnight setTimeout(() => { // trigger first update on next midnight change this.updateDom(); // start Recurring midnight change setInterval(()=>{ this.updateDom() }, 24*60*60*1000 ) // 24 hours * 60 minutes * 60 seconds * 1000 milliseconds (1 day elapsed in ms) setInterval delay }, timeUntilMidnight); // setTimeout delay } }, then the system triggers every midnight… not your code
  • MMM-transitfeed https error

    Unsolved
    2
    0 Votes
    2 Posts
    136 Views
    S
    @DIY_556 said in MMM-transitfeed https error: "realtimeUrls: [“https://api-endpoint.mta.info/Dataservice/mtagtfsfeeds/nyct%2Fgtfs-l”], well you have a misplaced " in front of realtimeUrls which with the one in front of https makes the start and end of a string and then https is an unknown JS token
  • MMM-GoogleSheets Not loading

    Unsolved
    6
    0 Votes
    6 Posts
    789 Views
    R
    @mlm198 This error is usually caused by not deploying the google apps script correctly. I have updated the README with pictures to hopefully make the deployment easier. Feel free to add an issue to the repo if you are still having problems.
  • MMM-GoogleSheets not working

    Unsolved
    5
    0 Votes
    5 Posts
    909 Views
    R
    @sdetweil In case anyone finds this post in the future. This problem is usually one of two causes: The google apps script was not deployed correctly and the request runs into a permission error page There is an error in the request due to bad script URL or other parameter I have updated the module to fail gracefully in these cases and hopefully provide a better error message. If you are still having problems feel free to add an issue to the repo. (https://github.com/ryan-d-williams/MMM-GoogleSheets/issues).
  • MagicMirror's Electron not starting up on a fresh Raspberry Pi 4B install

    Solved
    12
    0 Votes
    12 Posts
    1k Views
    S
    @adamambarus yes, have to use the right info
  • default calendar - exclude items

    Unsolved
    3
    0 Votes
    3 Posts
    224 Views
    S
    @zdenek did this work?
  • MMM-DateCounter

    Solved
    6
    1
    0 Votes
    6 Posts
    290 Views
    plainbrokeP
    @sdetweil Again, Thank you for the help.
  • MMM-OpenWeatherMapForecast 3.0 API calls and freeze issue

    Solved
    21
    1
    0 Votes
    21 Posts
    2k Views
    S
    @jfields very helpful, thanks