A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • problem with module place

    14
    0 Votes
    14 Posts
    6k Views
    K
    @Mykle1 if fixed it… i changed the 215% to 600px so it’s now 600px and 800px and set the code line frome above in the custom ccs body { overflow:hidden; } that works for now and almost in the middel thank for all for the support!!
  • Can't start the Installroutine

    3
    0 Votes
    3 Posts
    2k Views
    U
    Thank you ! that was the problem! Now everything is running!!!
  • After Update to 2.1.3 nothing works anymore

    9
    0 Votes
    9 Posts
    3k Views
    F
    Yes this is the Solution, thanks a lot. I read it also in a other topic. Thanks
  • 0 Votes
    1 Posts
    871 Views
    K
    Hi Forum ;) it seems i’m not fit enough with Linux. I have a php script to get the last missed calls from my speedport hybrid router. When i call ‘cd ~/MagicMirror/modules/speedport1707/tests/ && php missedcalls.php’ i get the last 5 misse calls. The Scipt need this directory, but with htis call it works from anywhere. No i changed the module MMM-SystemStats, i’ve added this command line in the node_helper.js as fifth command. But from there i get errors in the script: { Error: Command failed: cd ~/MagicMirror/modules/speedport1707/tests/ && php missedcalls.php PHP Fatal error: Uncaught exception 'RouterException' with message 'you musst be logged in to use this method' in /home/pi/MagicMirror/modules/speedport1707/lib/trait/Login.class.php:136 Stack trace: #0 /home/pi/MagicMirror/modules/speedport1707/lib/trait/Login.class.php(151): SpeedportHybrid->checkLogin() #1 /home/pi/MagicMirror/modules/speedport1707/tests/missedcalls.php(5): SpeedportHybrid->logout() #2 {main} thrown in /home/pi/MagicMirror/modules/speedport1707/lib/trait/Login.class.php on line 136 It was very hard for me to get the script running but now i’ve no idea. This are “only” web requests, so it can’t be anything with the permission when running from npm or can it? I’m very new with linux and php. I would be happy for every tip :) Thanks K.
  • Calender module - icloud calender?

    Unsolved
    17
    0 Votes
    17 Posts
    24k Views
    BehB
    @fox @WeedWood You can use vdirsyncer to sync a private iCloud calendar with your mirror. I wrote a walkthrough here: https://forum.magicmirror.builders/topic/5327/sync-private-icloud-calendar-with-magicmirror @cohron: vdirsyncer can also sync multiple calendars from iCloud
  • Vertical Screen Size

    8
    0 Votes
    8 Posts
    3k Views
    P
    @Phate Space for Alerts module? hmmm
  • Rest / HTTP data

    7
    0 Votes
    7 Posts
    3k Views
    cowboysdudeC
    Why use another module to get your data when you can just create a module to get your data ? ;)
  • Remove margins

    8
    1
    0 Votes
    8 Posts
    3k Views
    Mykle1M
    @Sean This one if all yours Sean. :^)
  • Combine current weather, time of day, and date in complement json file

    1
    0 Votes
    1 Posts
    801 Views
    C
    I’ve just started to build a MM to my daughter and have some questions. Currently my list of compliments is over 300 so I think it’s best to use I complement json file for them. Is it possible to combine the current weather and “morning/day/afternoon”? if so, can I do that in a compliment json file? if so, is it possible to also add specific dates so I can add like “don’t forget dads birthday tomorrow” “tomorrow it’s fathers day, DON’T buy a new tie to him” Can someone add an example code that I can use
  • "moment npm package" causes black screen after npm start

    3
    2
    0 Votes
    3 Posts
    2k Views
    axellejamousA
    Solved the issue by simply running npm install in the vendor folder. Found thanks to this issue Thought I’d share the solution so maybe noobs like me can use it in the future.
  • Nothing showing but app is running

    16
    0 Votes
    16 Posts
    9k Views
    Mykle1M
    @Fix-Not-Found said in Nothing showing but app is running: how would I go about that? I don’t know that formatting is necessary. However, you could try this and know if you were successful in less than an hour. https://forum.magicmirror.builders/topic/5274/how-to-manually-install-mm-on-your-pi-for-absolute-beginners
  • Possible Error in My Code?

    18
    0 Votes
    18 Posts
    6k Views
    Mykle1M
    @Wiltify said in Possible Error in My Code?: Mykle, thanks for pushing me to learn :) Already a huge fan of this community. Ahh, you’re welcome, mate.
  • Calendar shows "no entries" after MM Update

    37
    0 Votes
    37 Posts
    29k Views
    S
    @tgeimer Thanks for your solution! Saved my day ;)
  • MMM-WunderGround would like to change width

    1
    1
    0 Votes
    1 Posts
    938 Views
    A
    I’d like to use MMM-Wunderground to show a 10 day forecast in horizontal layout. By default it stays within it’s column region parameter — but I’d like to increase the max width for the 10 days forecast feature only (to utilize the area I’ve highlighted in yellow). This would result in an L-shaped region, and I’m not sure if that’s possible. Is there any way I can do this? [image: 1508352574665-mm.jpg]
  • HTTPS and Owncloud calendar + https rss feeds

    9
    0 Votes
    9 Posts
    4k Views
    B
    Ah ok. Thanks for the tip. Since I dont like sharing my private calendar in public, I tried to set it up without sharing the calendar. { url: 'webcal://cloud.linus-schuertz.de/remote.php/dav/calendars/Linus/linusics?export', symbol: 'calendar-o', auth: { user: 'Linus', pass: 'superstrongpassword', method: 'basic' } }, This setup is working! :)) Thanks alot for help!
  • MMM-ProfileSwitcher - Enter and Leave Messages

    2
    0 Votes
    2 Posts
    1k Views
    yawnsY
    @radonk said in MMM-ProfileSwitcher - Enter and Leave Messages: { module: 'MMM-ProfileSwitcher', config: { enterMessages: false, leaveMessages: false, } }, You left out the config part
  • Fix: IE11/Edge display black screen

    1
    0 Votes
    1 Posts
    791 Views
    S
    Re: IE11 / Edge browser black screen When not in developer mode, the Log object does not get created because of an error, because there is no support for console.timeStamp in Edge/IE11. In developer mode it seems it just skips the error. As a result, the call to Log.info throws an exception and halts execution in the init method in main.js which results in a black empty page. commenting out the following line in logger.js fixed the problem. //timeStamp: Function.prototype.bind.call(console.timeStamp, console) It seems Log.timeStamp is not used in MagicMirror and the modules that I use, so commenting it out worked for me. Better solution would be to have a polyfill I think. Stefan
  • Black screen

    4
    1
    0 Votes
    4 Posts
    3k Views
    Mykle1M
    @planet4 said in Black screen: Something was messed up. I hate when that happens. Glad you’re up and running :-)
  • MM restarts all the time after a few settings

    2
    0 Votes
    2 Posts
    1k Views
    Mykle1M
    @terades said in MM restarts all the time after a few settings: I think its the power cable its an bad one… sometimes i see a flash on the top right The “flash on the top right” is telling you that you have insufficient power going to the Pi. Standard power for the Pi is 5V 2.0A to 5V 2.5A. Are you using a power adapter or are you using a USB cable from a USB port?
  • Black Screen after Booting Up

    26
    0 Votes
    26 Posts
    15k Views
    Mykle1M
    @fox said in Black Screen after Booting Up: With pm2 status i get always two MagicMirror/mm instances. If i kill one, it comes back after a few seconds type pm2 stop mm or pm2 stop mm.sh in a terminal