A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Black screen when rotate

    Unsolved
    3
    0 Votes
    3 Posts
    344 Views
    M
    @sdetweil I did try with another hdmi cable with no success, after that I lower the frequency, first it seemed to work but then the second time I rotate the screen went all black. This is so strange. It did work perfect a couple of month ago.
  • node generate_token_v2 error

    Solved
    16
    0 Votes
    16 Posts
    3k Views
    A
    @Crimson0087 I had a similar issue after mine decided to break the API connection after a week. I have posted on the repo issue pages what I was able to do to fix your exact problem. Go figure you were attempting at the exact same time I was troubleshooting it. https://github.com/hermanho/MMM-GooglePhotos/issues/191
  • problem with update magicmirror

    Unsolved
    9
    0 Votes
    9 Posts
    1k Views
    S
    @benoit73 use the desktop menu, preferences, display configuration
  • Problems with "MMM-MyBMW"

    Unsolved
    7
    0 Votes
    7 Posts
    832 Views
    S
    @Vauxdvihl yes, the messages say about apt install or venv I think the author needs to fix this. please open an issue on the module github page to engage the author.
  • I need help installing MagicMirror on a Pi Zero W

    9
    0 Votes
    9 Posts
    911 Views
    S
    @plainbroke yeh they are
  • MMM-EasyBack not showing image

    Unsolved
    2
    0 Votes
    2 Posts
    239 Views
    S
    @pminich can you show the MagicMirror startup messages also please use the message editor code block wrapper for all config and debug info
  • MMM-FRITZ-Box-Callmonitor

    11
    1
    0 Votes
    11 Posts
    3k Views
    ?
    @uschmitt thanks a lot for that hint. Didn’t recognize this “new” fork. Now it seems that I’m one step further as the module is not “loading” all the time but declares, that there are no recent calls to show. Unfortunataly, there are recent calls I’ve done for testing reasons. Right of the “no recent calls” text there the message, that an undefinded error occured. Have to check the logs an look in it, what that might be now. EDIT: Now working, was just some authentication issue to the FRITZ!Box. Again, thanks a lot!
  • Everything was going so well

    Unsolved
    52
    0 Votes
    52 Posts
    21k Views
    S
    @sdetweil did you get back running?
  • 0 Votes
    4 Posts
    944 Views
    S
    @AnotherPersonMM glad you found it
  • Not getting custom.css with Docker

    7
    0 Votes
    7 Posts
    2k Views
    W
    @sdetweil Hi, just wanted to update that the new image that is in MM page reference for Docker installation works well now and I can configure the custom css. Thanks. Sorry took sometime to revert as was busy.
  • Issues running MM in a 32 bits laptop and Debian 12

    Unsolved
    3
    0 Votes
    3 Posts
    305 Views
    S
    @Marcophy or, you can try this yourself download the run-start.sh script into the MagicMirror folder, make it executable change the package.json start script to launch run-start.sh “start”: “./run-start.sh”, then make sure you have chromium or another browser and add the env variable as documented in my script readme(shown as web page for repo on github) then npm start will launch run-start, which will launch MagicMirror server mode and once it’s up, it will launch the browser you select
  • MMM-CalendarExt3Journal not displaying

    Solved
    3
    1
    0 Votes
    3 Posts
    217 Views
    D
    @MMRIZE Updating MagicMirror fixed it thanks!
  • MMM-Buttons to change pages

    Solved
    7
    0 Votes
    7 Posts
    781 Views
    S
    @captheavenger they sell wires with the GPIO pin sockets, the other end could be male or female, just clip that off and extend with anything… I have a spool of 20ga wire…
  • Openweathermap api works for 2 of my modules but not for Hourly

    Unsolved
    9
    0 Votes
    9 Posts
    1k Views
    H
    @sdetweil Thanks for your help, will do.
  • Major problems loading new module page...

    Solved
    8
    0 Votes
    8 Posts
    1k Views
    BKeyportB
    @KristjanESPERANTO Of course, now that I’ve reported it, it’s stopped doing it entirely. I’ll chalk it to an issue on my end. Things are a little crazy over here right now.
  • MMM-MyCommute not showing

    Solved
    12
    1
    0 Votes
    12 Posts
    3k Views
    S
    @semihbakrac sorry, know nothing about the internals…
  • 0 Votes
    3 Posts
    385 Views
    S
    @superior_carter it looks like the module uses these classes [image: 1715988428504-1000026023.jpg]
  • The installation instructions are broken.

    Unsolved
    5
    0 Votes
    5 Posts
    474 Views
    S
    @mumblebaj my script is listed as first alternative
  • Newbie Trying to Get Started

    Solved
    13
    0 Votes
    13 Posts
    3k Views
    L
    @sdetweil OK, the issue was that I used this https://aur.archlinux.org/packages/magicmirror It’s 2.22 and I’m not sure how it works. I installed normally from git now and it works, and also the “wallpaper” code works for me. Thank you for your help. Now I will try to configure this.
  • Problem with MMM-ValuesByNotification and MMM-CommandToNotification

    Unsolved
    19
    0 Votes
    19 Posts
    2k Views
    wishmaster270W
    @Jimmy1502 You will need to comment the try, too. Additionally the indention of the code needs to be changed. The file will be look like this then: #!/bin/python3 #Install Dependencies: # pip3 install adafruit-circuitpython-dht # sudo apt-get install libgpiod2 import time import board import adafruit_dht import json import sys gpio_nr = 4 if len(sys.argv) > 1: gpio_nr = int(sys.argv[1]) # Initial the dht device, with data pin connected to: dhtDevice = adafruit_dht.DHT22(getattr(board, "D%d"%gpio_nr)) result = {} result["temperature_c"] = dhtDevice.temperature result["humidity"] = dhtDevice.humidity result["temperature_f"] = (result["temperature_c"]*1.8) + 32 result["error"] = False print(json.dumps(result))