A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Hmm, a lot of modules are putting up a fight for me :-(

    Solved
    10
    0 Votes
    10 Posts
    2k Views
    F
    I used the YRThen, and it works nicely, I do think it would be nice to have a fade option, like in many of the other modules.
  • MMM-MLB Scores not loading

    Moved Solved
    7
    0 Votes
    7 Posts
    2k Views
    Mykle1M
    @kc0bra You can mark this post as solved by clicking the three verticle dots to the right of the post that helped you.
  • MMM-CalendarExt not showing up at all

    Unsolved
    6
    1
    0 Votes
    6 Posts
    2k Views
    T
    @Sean said in MMM-CalendarExt not showing up at all: You probably executed MM twice. (Or your previous MM was not killed normally) Check your pm2. That was it thanks.
  • MMM-CalendarExt2 month view for Sept not showing all views

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    A
    @Sean Thank you that workd.
  • Trouble with MMM-Remote-Control

    Unsolved
    4
    1
    0 Votes
    4 Posts
    1k Views
    F
    @Stoffbeuteluwe said in Trouble with MMM-Remote-Control: { module: “MMM-Remote-Control”, // uncomment the following line to show the URL of the remote control on the mirror position: ‘bottom_left’, // you can hide this module afterwards from the remote control itself config: { customCommand: {}, // Optional, See “Using Custom Commands” below customMenu: “custom_menu.json”, // Optional, See “Custom Menu Items” below showModuleApiMenu: true, // Optional, Enable the Module Controls menu apiKey: “” // Optional, See API/README.md for details } }, @Stoffbeuteluwe thanks. I implemented your code and it did get rid of the config request, but it still doesn’t display the URL as mentioned in the instructions.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    4 Views
  • MMM-MMM-Remote-Control monitor problem

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    O
    For some reason it started to work. But I’m not sure how to do to get the monitor status to work. I have tried to make these changes. But it doesn’t work: monitorControl: function(action, opts, res) { let status = "unknown"; let monitorOnCommand = (this.initialized && "monitorOnCommand" in this.thisConfig.customCommand) ? this.thisConfig.customCommand.monitorOnCommand : "vcgencmd display_power 1"; let monitorOffCommand = (this.initialized && "monitorOffCommand" in this.thisConfig.customCommand) ? this.thisConfig.customCommand.monitorOffCommand : "vcgencmd display_power 0"; let monitorStatusCommand = (this.initialized && "monitorStatusCommand" in this.thisConfig.customCommand) ? this.thisConfig.customCommand.monitorStatusCommand : "vcgencmd display_power"; if (["MONITORTOGGLE", "MONITORSTATUS", "MONITORON"].indexOf(action) !== -1) { screenStatus = exec(monitorStatusCommand, opts, (error, stdout, stderr) => { if (stdout.indexOf("display_power=0") !== -1 || stdout.indexOf("0") !== -1) { // Screen is OFF, turn it ON status = "off"; if (action === "MONITORTOGGLE" || action === "MONITORON") { exec(monitorOnCommand, opts, (error, stdout, stderr) => { this.checkForExecError(error, stdout, stderr, res, { monitor: "on" }); }); this.sendSocketNotification("USER_PRESENCE", true); return; } } else if (stdout.indexOf("HDMI") !== -1 || stdout.indexOf("true") !== -1) { // Screen is ON, turn it OFF status = "on"; if (action === "MONITORTOGGLE") { this.monitorControl("MONITOROFF", opts, res); return; } } this.checkForExecError(error, stdout, stderr, res, { monitor: status }); return; });
  • Two questions regarding MMM-CalendarExt2

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    C
    @Sean Thanks! I could suggest to staff to make duration part of the description. That will work. I can display ‘Gym Rentals’ on the left side of the calendar. Is there anyway to display the month of the current week on the right side? https://imgur.com/kcPfvub
  • MMM-CalendarExt - After reboot it takes up to 30min to show

    Solved
    2
    0 Votes
    2 Posts
    741 Views
    F
    looks like this worked: https://github.com/eouia/MMM-CalendarExt/issues/54
  • mail module problem

    Moved
    13
    0 Votes
    13 Posts
    4k Views
    P
    hello je tiens avous remercier pour votre aide mon module fonctionne a 99 pour cent il me dit '…no read mail … j’ai configurer comme ca host: ‘imap.gmail.com’, port: 993, dans gmail j’ai active imap mais mes mails n’apparaisse pas sur l’ecran de magic m une petite idee pour cloturer ma demande merci beaucoup papinel 343/5000 Hello I want to thank you for your help my module works at 99 percent he told me '… no read mail … I set it up host: ‘imap.gmail.com’, port: 993, in gmail i have active imap but my mails do not appear on the screen magic m a little idea to close my request thank you so much papinel
  • Displaying UK details

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    Mykle1M
    @einstead38 You can use a newsfeed that is UK specific. (instead of the NY Times default). You can use a calendar that displays UK holidays (instead of the US Holidays). There are many modules, some of which are UK based which you can find here https://github.com/MichMich/MagicMirror/wiki/3rd-party-modules. Compliments: you can change to your liking. Clock: should already be correct. etc… Was there something specific you were looking for?
  • Best way to include time with Month title on MMM-CalendarExt

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    M
    Actually I posted this question to the MMM-CalendarExt2 github issues page and a new version was added today to address the problem. He added the ability to display the month and year.
  • Sample config not working with MMM-CalendarExt2

    Unsolved
    1
    0 Votes
    1 Posts
    655 Views
    C
    I only see the daily view in the top left of the screen. Everything else is dark. /* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. * * For more information how you can configurate this file * See https://github.com/MichMich/MagicMirror#configuration * */ var config = { address: "localhost", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"], language: "en", timeFormat: 24, units: "metric", modules: [ { module: 'MMM-CalendarExt2', config: { calendars : [ { url: "https://www.google.com/calendar/ical/ovb564thnod82u5c4njut98728%40group.calendar.google.com/public/basic.ics", }, ], views: [ { mode: "daily", }, ], scenes: [ { name: "DEFAULT", }, ], }, } ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}
  • MMM-TransLoc module not showing up

    Unsolved
    3
    0 Votes
    3 Posts
    795 Views
    P
    @sdetweil Thank you for the response. Just now I got the url from the openapi site and included it in the config and it still didn’t work. I originally left it out as the module instructions said it was optional, but even with it the module is not showing on my screen.
  • Need some help getting AlexaOnOff to work with Google Mini

    Unsolved
    2
    0 Votes
    2 Posts
    788 Views
    S
    @smackenzie5 said in Need some help getting AlexaOnOff to work with Google Mini: @shbatm @shbatm According to this article, Google home runs port 80: https://github.com/makermusings/fauxmo/issues/21 Don’t know if that would make a difference? Thanks
  • Calendar Event Time

    10
    0 Votes
    10 Posts
    5k Views
    M
    I have had this problem too using the calendar module and it seems to be related to node-ical addition that parses the ical files. See link text to that post which has my solution at the bottom.
  • MMM-SoccerLiveScore - Display problem

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    StoffbeuteluweS
    @sdetweil had the same problem but after npm audit fix after the installation it worked fin (but I’m not really sure :flushed_face: )
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    1 Views
  • MMM-Nasaastropic header title from url image

    3
    0 Votes
    3 Posts
    2k Views
    saljokeS
    @grena Really wonderful I have to test it soon
  • Trying to remove Weeks column, and change grid on CalendarExt

    Solved
    1
    0 Votes
    1 Posts
    592 Views
    C
    Again, I must be doing something wrong. I have added showWeeks: 0 in a number of places but it still shows the weeks column. I have included a stylename reference, but regardless of which style I use, the grid always looks the same. Other than those two items, the config file is working. SOLVED. I was using an uppercase letter for the parameter name when it should have been lowercase.