A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Saving file causing MM to reload

    4
    0 Votes
    4 Posts
    634 Views
    S
    @ankonaskiff17 and said yes to use pm2?
  • MMM-CalendarWeek (MODULE_NOT_FOUND) - MM2.15.0

    2
    0 Votes
    2 Posts
    793 Views
    S
    @peggleg yes, reported back in April. MM has removed items connected the the request library, which has security issues and will not be updated. it seems a number of modules did not document using libraries in their package.json file. to work around, in the module or mm folder do npm install valid-url
  • Wallpaper module with magic mirror OS

    2
    1 Votes
    2 Posts
    543 Views
    D
    i resolved it, the problem was the wrong relative path
  • 0 Votes
    17 Posts
    3k Views
    thgmirrorT
    @everalm @HeisWinston asked a “quick question” and he got “quick answers”, so the request was fulfilled. Any additionally information how to use the tools are not direct related to MM.
  • 0 Votes
    6 Posts
    3k Views
    S
    @hco125 said in MMM-GoogleTasks not compatible with MMM-pages, MMM-Carousel, or MMM-ModuleScheduler: TypeError: Cannot convert undefined or null to object at Function.keys () bug… missing data, when display is requested do this edit MMM-GoogleTasks.js change line 37 from this.tasks; to this.tasks= {};
  • MMM-OpenWeatherMapForecast header

    2
    0 Votes
    2 Posts
    628 Views
    S
    If you test something 100 times always test it just once more. This worked… /* Forecast Header */ .MMM-OpenWeatherMapForecast .module-header { .forecast-header wasn’t needed (even tried one time with a space between the two). Cheers
  • Problem with Calendar, same in default and MyCalendar

    2
    0 Votes
    2 Posts
    417 Views
    StoffbeuteluweS
    Solution was to copy the the link new and past in config js ……don’t know why the old link is crashed
  • This topic is deleted!

    2
    1
    0 Votes
    2 Posts
    67 Views
  • Raspberry Pie Weather Dress Recommendation

    4
    1
    0 Votes
    4 Posts
    709 Views
    M
    @wenike Oh, my God! I’ve been revising the code for days after reading this reply. Eventually, the recommendation for the clothes I want appears on Raspberry Pie. Thank you so much. You are my lifesaver.
  • After Update to 2.15, MM ist black.

    2
    0 Votes
    2 Posts
    328 Views
    S
    @thebassfly said in After Update to 2.15, MM ist black.: Cannot find module ‘valid-url’ this library was removed from mm in 2.15 because of security risks. some module u are using is using it, but did not declare it in their package.json file dependencies section do cd MagicMirror npm install valid-url
  • Poemoftheday module showing black screen

    7
    0 Votes
    7 Posts
    1k Views
    O
    I am also having similar issue.
  • MMM-Pages pages don't switch

    2
    1
    0 Votes
    2 Posts
    462 Views
    S
    @mrtrol2013 says it is looking for the classname string to use on search
  • i want to put my code in modeul

    5
    0 Votes
    5 Posts
    292 Views
    excuse me suddenly my rasberry was had error about login is continued, and it didn’t working. do you know why?
  • FYI new weather_plus onecall module

    17
    0 Votes
    17 Posts
    3k Views
    S
    @hango O.K. Thanks for the explanation. Cheers
  • i want to add phython code in 'MMM-Facial-Recognition-OCV3'

    4
    0 Votes
    4 Posts
    522 Views
    S
    1st, please use code block tags around code… mark the text and hit the button above the editor that looks like </> i will fix one, u fix the others… now, I’m not sure that this code does… you cannot manipulate (change) the UI/webpage with python in MagicMirror… you can send info to a node_helper spawn routine that can send info onto the module, which can manipulate (change) the UI/webpage the module u are using has not been updated in 3 years… https://github.com/nischi/MMM-Face-Reco-DNN, HAS been updated recently, and u might get help by posting an issue to its repo the module u are using, launches a python script in the background and checks for responses pyshell.on('message', function (message) { if (message.hasOwnProperty('status')){ console.log("[" + self.name + "] " + message.status); } if (message.hasOwnProperty('login')){ console.log("[" + self.name + "] " + "User " + self.config.users[message.login.user - 1] + " with confidence " + message.login.confidence + " logged in."); self.sendSocketNotification('user', {action: "login", user: message.login.user - 1, confidence: message.login.confidence}); } if (message.hasOwnProperty('logout')){ console.log("[" + self.name + "] " + "User " + self.config.users[message.logout.user - 1] + " logged out."); self.sendSocketNotification('user', {action: "logout", user: message.logout.user - 1}); } }); and the DNN does similar self.pyshell.on('message', function(message) { // A status message has received and will log if (message.hasOwnProperty('status')) { console.log('[' + self.name + '] ' + message.status); } // Somebody new are in front of the camera, send it back to the Magic Mirror Module if (message.hasOwnProperty('login')) { only checking for login and logout
  • mvgmunich: undefined result

    7
    0 Votes
    7 Posts
    1k Views
    S
    @andyyy said in mvgmunich: undefined result: Browser Error: { “isTrusted”: true yeh, when there are errors, it gets harder to trap them… but u found the cause /mvgmunich.js (159) looks like the last change was to fix a similar problem, but it was 14 months ago… so I don’t know if the author is responding to issues…
  • I need help with the software

    2
    0 Votes
    2 Posts
    257 Views
    S
    @ethanatesand ok… not sure what part of the process u have trouble with… use my automated install script… remove the existing MM folder (rename it maybe) see https://github.com/sdetweil/MagicMirror_scripts for installing modules, etc, see the two links in my signature below
  • 0 Votes
    11 Posts
    5k Views
    I
    @thgmirror 💡💡💡👍🙏
  • MMM-Fitbit2 PythonShell is not a constructor

    14
    0 Votes
    14 Posts
    5k Views
    S
    @vizulize yeh, i don’t know whay there is a python_shell lib… as exec and spawn are so easy…
  • MagicMirror restarts all the time

    11
    0 Votes
    11 Posts
    2k Views
    L
    @sdetweil I really don´t know what was wrong. Now I´ve made a new installation, copied my old config.js and it works. Thanks for your help.