A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Facebook birthdays not loading anymore

    1
    0 Votes
    1 Posts
    1k Views
    C
    My default calendar module imports facebook birthdays and a few days ago it just stopped working without me changing anything. It just says “no entries”. After that I changed the url so that it would show upcoming events instead of birthdays. This still works, events are shown. But birthdays still don´t. Does anybody else have this problem? What can I do to fix this?
  • 0 Votes
    1 Posts
    1k Views
    P
    Hi, I am using the default newsfeed module and the news get stuck. Below are the logs with the error ENOTFOUND : I tried to search StackOverflow but I am not knowledgeable enough in javascript to understand what to do. Any help ? mm-start-error-0.log { Error: getaddrinfo ENOTFOUND www.lemonde.fr www.lemonde.fr:80 at errnoException (dns.js:28:10) at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:76:26) code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'getaddrinfo', hostname: 'www.lemonde.fr', host: 'www.lemonde.fr', port: 80 } { Error: getaddrinfo ENOTFOUND www.economist.com www.economist.com:80 at errnoException (dns.js:28:10) at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:76:26) code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'getaddrinfo', hostname: 'www.economist.com', host: 'www.economist.com', port: 80 } And from the mm-start-out-0.log > magicmirror@2.1.0 start /home/pi/MagicMirror > electron js/electron.js Starting MagicMirror: v2.1.0 Loading config ... Loading module helpers ... No helper found for module: alert. No helper found for module: clock. Initializing new module helper ... No helper found for module: compliments. No helper found for module: currentweather. No helper found for module: weatherforecast. Initializing new module helper ... Initializing new module helper ... All module helpers loaded. Starting server op port 8080 ... Server started ... Connecting socket for: calendar Starting node helper for: calendar Connecting socket for: newsfeed Starting module: newsfeed Connecting socket for: mmm_velib Sockets connected & modules started ... Launching application. Create new calendar fetcher for url: https://calendar.google.com[XYZ]basic.ics - Interval: 300000 Create new calendar fetcher for url: https://calendar.google.com/[XYZ]basic.ics - Interval: 300000 Create new news fetcher for url: http://www.lemonde.fr/rss/une.xml - Interval: 300000 Create new news fetcher for url: http://www.economist.com/sections/international/rss.xml - Interval: 300000 > magicmirror@2.1.0 start /home/pi/MagicMirror > electron js/electron.js Starting MagicMirror: v2.1.0 Loading config ... Loading module helpers ... No helper found for module: alert. No helper found for module: clock. Initializing new module helper ... No helper found for module: compliments. No helper found for module: currentweather. No helper found for module: weatherforecast. Initializing new module helper ... Initializing new module helper ... Initializing new module helper ... All module helpers loaded. Starting server op port 8080 ... Server started ... Connecting socket for: calendar Starting node helper for: calendar Connecting socket for: newsfeed Starting module: newsfeed Connecting socket for: mmm_velib Connecting socket for: MMM-Remote-Control Starting node helper for: MMM-Remote-Control Sockets connected & modules started ... Launching application. Create new calendar fetcher for url: https://calendar.google.com/calendar/[XYZ]/basic.ics - Interval: 300000 Create new calendar fetcher for url: https://calendar.google.com/[XYZ]basic.ics - Interval: 300000 Create new news fetcher for url: http://www.lemonde.fr/rss/une.xml - Interval: 300000 Create new news fetcher for url: http://www.economist.com/sections/international/rss.xml - Interval: 300000 Powering off HDMI Powering on HDMI with preferred settings Whoops! There was an uncaught exception... MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection? If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues Whoops! There was an uncaught exception... MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection? If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues
  • [MMM-NetworkScanner] disable logging

    Unsolved
    16
    0 Votes
    16 Posts
    8k Views
    Mykle1M
    @michael24h said in [MMM-NetworkScanner] disable logging: can’t find airport ext. so wifi might do. Well, that sounds good. They don’t have EVERY icon but I found some that work perfectly for me
  • Display web widget on mirror through iFrame?

    60
    0 Votes
    60 Posts
    69k Views
    Mitch1138M
    There are some comments on the github section for TheBogueRat-MMM-iFrameReload that it will not refresh with some url’s. I have a similar problem. Some suggested appending the current time/date to the url but this gives an invalid url. Has anyone got this to work? My config is: { module: 'MMM-iFrameReload', position: 'top_center', // This can be any of the regions. config: { // See 'Configuration options' for more information. url: "http://tides.tidegraph.com/api/tidegraph.php?bg=black&scale=.8&station=Old Frenchtown Wharf, Elk River, Maryland", width: "100%", // Optional. Default: 400px height: "450px", // Optional. Default: 800px refreshInterval: 1800 //Optional. Default: 3600 = 1 hour } }, Many thanks.
  • Podcast

    12
    0 Votes
    12 Posts
    8k Views
    S
    @witschi87 dit you have resolve the problem? I ave the same issue - i can press the button, in the console appears BUTTON_PRESSED but nothing happen…
  • MMM-Button dont load

    5
    0 Votes
    5 Posts
    2k Views
    S
    @yawns thank you, now the module starts. thank you very much
  • Delay a module from loading?

    7
    0 Votes
    7 Posts
    4k Views
    strawberry 3.141S
    @Advokaten Module.register("iFrame",{ // Default module config. defaults: { height:"300px", width:"100%" }, start: function(){ setTimeout(() => {this.delayLoad = true; this.updateDom();}, 2 * 60 * 1000); }, // Override dom generator. getDom: function() { var iframe = document.createElement("IFRAME"); if(this.delayLoad){ iframe.style = "border:0"; iframe.width = this.config.width; iframe.height = this.config.height; iframe.src = this.config.url; } return iframe; } });
  • RSS/Newsfeed with rows like calendar?

    4
    0 Votes
    4 Posts
    2k Views
    D
    As broberg pointed out, i want multiple tiles at once. Like the calendar shows. Sorry if i where unclear.
  • MMM-Wunderground clock

    4
    0 Votes
    4 Posts
    2k Views
    Mykle1M
    @haskellj said in MMM-Wunderground clock: You are right, stupid mistake. Thanks! You’re welcome. We’ve all been there. I certainly have been. :thumbsup_tone2:
  • 0 Votes
    1 Posts
    983 Views
    R
    I have both modules installed. MMM-TouchPlayerBasic and MMM-Podcast. Everything works perfectly. Now I would like to use MMM podcast via touchscreen without button. I have added a picture and the scriptfile to MMM-TouchPlayerBasic. the script (ard.sh): sudo omxplayer --vol -3000 /home/pi/MagicMirror/modules/MMM-Podcast/video.mp4 Then made executable: chmod +x /home/pi/MagicMirror/modules/MMM-TouchPlayerBasic/scriptfiles/ard.sh Restart rpi. When I press the touchbutton nothing happens. The MMM-TouchPlayerBasic ( each radiostation) himself is still working perfekt, If I write the same command in the cmd window via ssh the “Tagesschau” video is running, overlapping the MM, with sound, everything perfekt. Why it does not work in the module? Maybe it has something to do with the permission rights? Many thanks already in advance for your help.
  • Default Calendar - iCloud Calendar description

    1
    1
    0 Votes
    1 Posts
    2k Views
    A
    Hello, I’m wondering if there’s a way to load calendar description from iCloud into the calendar module, or if there’s a ‘better’ module for achieving this. What I have: “Work - In 3 days” What I put into my calendar: “Work - RandomCompany - In 3 days” [image: 1489237762455-icloud-calendar.png] I’d like the description to be put in between the title and the time/date. How do I load the description? Thanks!
  • Overlapping modules?

    3
    0 Votes
    3 Posts
    3k Views
    M
    @broberg That worked, thanks!
  • MMM-traffic - used 12 hour to get it work but can not....

    6
    0 Votes
    6 Posts
    3k Views
    strawberry 3.141S
    @ironman_DK problem solved. Somehow he modified the module directory name to lowercase and the system couldn’t find the module.
  • Layout problem

    9
    0 Votes
    9 Posts
    7k Views
    FlatPepsiF
    You might find this useful, I thought it was awesome when I saw it: https://forum.magicmirror.builders/topic/286/regions top_bar and bottom_bar are light gray top_left and bottom_left are red top_center and bottom_center are blue top_right and bottom_right are green upper_third is yellow middle_center is cyan lower_third is magenta All these regions will resize as needed. [image: 1488134230711-regions.png]
  • Problem with ip whitelist

    13
    0 Votes
    13 Posts
    9k Views
    Mykle1M
    @roramirez said in Problem with ip whitelist: In a future it should be by default. Good idea! BTW, you all do an excellent job here and I am very grateful. Thank you. :thumbsup_tone1:
  • MMM-WunderGround - Display hourly only?

    11
    0 Votes
    11 Posts
    10k Views
    C
    @strawberry-3.141 lol… I changed it after posting and forgot about it. Sorry for that. It works perfectly now :)
  • MMM-Fuel shorten text

    6
    0 Votes
    6 Posts
    4k Views
    S
    Hi, have another issue with the shortenText functionality. When I use it, the address is max shorter(in px) then the name of the gas station. That’s a little bit anoying if more then one station is shown from the big companies and I can’t see the complete address, even if there is still enough place. Any idea, how I can change it? In the custom.css for example.
  • MMM-Remote-Control on LINUX box (NOT RPi)

    Unsolved
    5
    0 Votes
    5 Posts
    3k Views
    A
    @Jopyth It would probably help if I installed it into MODULES instead of into the ROOT directory (as a matter of fact, it helped a LOT!) DUH. Sorry to have wasted your time. My bad :8ball:
  • MMM-PIR-Sensor off delay

    6
    0 Votes
    6 Posts
    3k Views
    S
    on this site is the git clone command false: MMM-PIR the correct clone command is: git clone https://github.com/**Patrick-Remy**/MMM-PIR-Sensor.git
  • MMM-Wunderlist add / MM won't start

    Solved
    5
    0 Votes
    5 Posts
    3k Views
    S
    you the best! Thank you! it runs, Made my Day!!