A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Strange Glitching on HDMI

    Solved
    8
    0 Votes
    8 Posts
    3k Views
    A
    @hrjmsh did you do anything special to get xrandr to rotate your display for your vertical setup? I disabled fmks and reverted to full kms (dtoverlay=vc4-kms-v3d), but couldn’t get the screen to rotate. If you have any insight or advice, it’s greatly appreciated :)
  • Current weather not displaying

    Unsolved
    2
    0 Votes
    2 Posts
    2k Views
    Z
    @henryluyu Try removing , GB from the location line of Current Weather module.
  • how to adjust brightness based on time on RPi3?

    Solved
    7
    0 Votes
    7 Posts
    3k Views
    L
    all good! thanks, I missed the dependencies installation section.
  • screen background

    Unsolved
    4
    1
    0 Votes
    4 Posts
    2k Views
    BKeyportB
    What’s your CSS look like to make the grey background, shouldn’t be anything more than this: .module { background-color:rgba(0,0,0,0.5); border-radius: 5px; padding:5px; }
  • align two modules height

    Unsolved
    1
    0 Votes
    1 Posts
    583 Views
    L
    module: "currentweather", position: "bottom_left", module: "weatherforecast", position: "bottom_right", How could I align both modules height?
  • Getting date inside the config.js

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    S
    @cowboysdude no. He wants to get the date/time value dynamically on his module config strings. You can certainly get it in the code, either module or helper
  • MMM-YrThen - stuck on loading

    Unsolved
    5
    0 Votes
    5 Posts
    2k Views
    T
    @madmike Perhaps slow loading time due to heavy weather conditions in Norway atmo :D No, seriously - it always loads immediately here, dunno what you’re doing “wrong”. After a restart of the mirror, is it loading at normal speed?
  • RTSP Stream error since last Update

    Unsolved
    4
    0 Votes
    4 Posts
    2k Views
    S
    I’ve updated the develop branch of the module, please see the main MMM-RTSPStream Thread and update to the latest version on the develop branch.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    2 Views
  • iFrame Form Issue

    Unsolved
    8
    1
    0 Votes
    8 Posts
    3k Views
    B
    Just to follow up on this, it appears that the issue had something to do with interaction between MMM-Carousel and MMM-iFrame-Ping. The form worked fine with the iFrame module displayed on its own, the issue only presented when it was part of a slide within MMM-Carousel. I have switch my mirror around to use MMM-OnscreenMenu instead and the form behaves as expected now.
  • Raspbian Stretch: Screen is always blanked

    Solved displaying blank black screen raspbian
    2
    1 Votes
    2 Posts
    1k Views
    Mykle1M
    @a-i-ks Raspbian still seems to turn off the display. Personally, I would install xscreensaver and use that to disable the screensaver. In your terminal sudo apt-get install xscreensaver THEN sudo reboot Run xscreensaver. Choose Disable Screensaver. Done.
  • Debian 9 as VM, running npm start makes it all "freeze" but...

    Unsolved
    11
    1
    0 Votes
    11 Posts
    4k Views
    ?
    @thestigh I’m not sure this is exact solution. However, Some system (like ATB) has an issue to execute Electron of MM (after 2.x - new GPU acceleration). You can run MM as serveronly mode to use your existing Chrome Browser instead Electron. You can make a script to execute MM serveronly mode and Chrome to display it. Or you can try this to disable GPU. npm start -- --disable-gpu
  • Office365 Calendar load error

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    N
    Glad to help, have a nice day
  • first installation on RPi3 failed

    Solved
    6
    0 Votes
    6 Posts
    2k Views
    L
    looking okay after reboot, thanks
  • MagicMirror doesn't start with 'npm start' electron not found

    2
    0 Votes
    2 Posts
    1k Views
    S
    @Stevo Please provide a little more info about your installation: Are you on a Raspberry Pi or something different How did you install the MM? Have you run npm install? Are you trying to start it from SSH or on the computer directly?
  • All modules auto hide, except currentweather

    Solved
    3
    0 Votes
    3 Posts
    1k Views
    J
    @sean thanks! So it is a feature! I can see what we could do with it, and now that I know where to look, I’ll put it to good use. I’ll dive into the currentweather code and try to find out why it behaves different.
  • ipwhitelist - a lot of issues... can't connect remotely ..

    Unsolved
    4
    0 Votes
    4 Posts
    2k Views
    B
    @plati got it … thank you… but the ipwhitelist Parameter are not very handsome so i did a ipwhitelist: [], and that works… further i will look for the correct Syntax to grant Access for Special addresses outside my LAN…
  • syntax errors

    Unsolved
    11
    0 Votes
    11 Posts
    4k Views
    G
    @egnos As @sdetweil already stated the comma’s are for showing the code that there is more to run after the line. It is no problem to have a extra comma at the end. But if you don’t put a comma the code doesn’t run further and gives you a syntax error. The {} are for making a object in JS, if you don’t close the object with a } you will also get a syntax error.
  • MMM-awesome-alexa snowboy issue

    Unsolved
    9
    0 Votes
    9 Posts
    2k Views
    bheplerB
    Please use the Markdown features of the board when posting code.
  • Error on npm install

    Solved
    14
    0 Votes
    14 Posts
    9k Views
    R
    Seems my reply to this got lost… Got this working! Removed the .nvm directory, removed the symlinks, shutdown pm2 and re-ran the installation script and it all went in fine! sudo rm -rf ~/.nvm sudo rm -f /usr/local/bin/node sudo rm -f /usr/local/bin/nvm pm2 stop mm sudo rm -rf ~/MagicMirror bash -c "$(curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh)" I got an error on npm not being the right version, so upgraded that: sudo npm i -g npm (Note sudo is working now, which it wasn’t before) And now my node and npm versions look good and pm2 is running MagicMirror again! pi@raspberrypi:/ $ node -v v9.11.2 pi@raspberrypi:/ $ npm -v 6.5.0 Thanks everyone for the help!