A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • MMM-PythonPrint customisation

    Solved
    46
    0 Votes
    46 Posts
    23k Views
    S
    @kayakbabe so , maybe your python script starts and runs, prints one line, and ends. current temp is x is that all you want your module to present, one line? or do you want the output every few seconds minutes this is repetative:false, but my module will rerun the script every cycle time milliseconds but some python scripts do that internally. print, sleep, print, sleep, print, sleep, print… this is repetative: true my module will just start the python script there are two different ways to capture the output should have named parm script_is_long_running I provided a sample of each also, in many cases, you are using someone else’s script and don’t have control over how it works, and don’t want to rewrite it
  • MMM-WeasleyClock: authorization error

    Moved
    11
    1
    0 Votes
    11 Posts
    4k Views
    bheplerB
    @kai - Glad to hear it! Next up on the to-do list is to enable notifications so other modules can react to the messages.
  • Can I round Precipitation Units

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    kayakbabeK
    I figured it out. I wanted to round it off too. No decimal places. You have to edit the template files. look for the showPrecipitationAmount if statement. I altered the output a little bit… see below for what I did. in forecast.njk {% if config.showPrecipitationAmount %} {% if f.precipitationUnits %} <td class="align-right bright precipitation"> {{ f.precipitation }}{{ f.precipitationUnits }} </td> {% else %} {% if f.pop %} <td class="align-right precipitation"> {{(f.pop * 100).toFixed(0)}}% </td> {% endif %} <td class="align-right bright precipitation"> {{ f.precipitation | unit("precip") }} </td> {% endif %} {% endif %} I found info on the templates by googling nunchucks templates.
  • MMM-Rocketlaunch- image removal?

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    M
    I had the same idea. I added a boolean variable to disable outputting row 9. diff --git a/MMM-Rocketlaunch.js b/MMM-Rocketlaunch.js index c65b2c5..31f5faa 100644 --- a/MMM-Rocketlaunch.js +++ b/MMM-Rocketlaunch.js @@ -25,6 +25,7 @@ Module.register('MMM-Rocketlaunch',{ apiParmVerbose: '&format=json', missiondesc: true, imggray: true, + imgdisplay: true, launches: "1", statusTable: { @@ -229,7 +230,7 @@ Module.register('MMM-Rocketlaunch',{ } // row 9 - if (currentLaunche.image) { + if (currentLaunche.image && this.config.imgdisplay) { var row = document.createElement("tr"); table.appendChild(row);
  • Can't get wallpaper to work/load from local directory in MMM-Wallpaper

    Solved
    4
    0 Votes
    4 Posts
    3k Views
    S
    @shybull i always saved with extension, as that is what drives the app selection when i double click a file
  • MMM-Selfieshot: High resolution for selfie

    Solved
    11
    0 Votes
    11 Posts
    5k Views
    H
    @bhepler Thanks for your efforts and I already replied via github! You guys rock, while my competencies are definitely more on the hardware/building side :see-no-evil_monkey:
  • Black Screen "Electron" after updating MM

    Unsolved
    17
    1
    0 Votes
    17 Posts
    5k Views
    S
    @RIKKO14 can u open the advert tab and see what it is? there shouldn’t be any advert showing from MM content
  • How to properly update modules?

    Unsolved
    12
    0 Votes
    12 Posts
    6k Views
    BKeyportB
    @sdetweil hey, I’m trying to be as good as @mmrize let me be. 🤣🤣
  • default Calendar module caching

    Solved
    7
    0 Votes
    7 Posts
    1k Views
    BKeyportB
    Put down as a google bug.
  • MMM-Imageslideshow - centering upright images

    Unsolved
    7
    1
    0 Votes
    7 Posts
    2k Views
    plainbrokeP
    @sdetweil I run pretty much all modules middle_center so they all center up pretty well for me. up and down is my only adjustments usually. I have had to adjust the left or right margin a few times but most everything centers on its own pretty well using the middle_center postion when setting them up… So I am absolutely of no help to him…
  • List of Modules with "Last Update" date

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    S
    @spospordo yeh, the change was a year ago… but I understand… thats why I post and pin resolutions to known problems at the top of the troubleshooting section.
  • how to install specific version of magicmirror

    Unsolved
    8
    0 Votes
    8 Posts
    1k Views
    T
    @sdetweil thanks 😊. Will try soon.
  • MMM-Scoreboard - Module Working but no Data

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    J
    Did some more searching and it looks like the source link changed https://github.com/jclarke0000/MMM-MyScoreboard/issues/60 This fixed my issue
  • Why are my posting spam

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    S
    @N6NG same as always paste text select all text hit the button that looks like </>
  • MMM-Astro

    Unsolved
    1
    2
    0 Votes
    1 Posts
    343 Views
    A
    Hello everyone. I recently installed MMM-Astro and it is working great except one thing. It doesn’t show the basic horoscope. When I set extend: true it shows only the extended information with mood, lucky numbers etc. No main sign information: [image: 1660327710429-1550107379311-1.png] And when I set extend: false it shows only the mood, lucky number etc section: [image: 1660327895694-1550107379311-2.png] Has anyone faced the same issue? Any suugestions are welcome.
  • MMM-Selfieshot: fswebcam not working anymore

    Solved
    4
    0 Votes
    4 Posts
    948 Views
    bheplerB
    @MMRIZE - Dude, I’m the one who should apologize to him.
  • Eye Candy Module Doesn't Load

    Unsolved
    9
    0 Votes
    9 Posts
    3k Views
    S
    @MMNewby you can also open the developers window console ctrl-shift-i, select the console tab and enter a unique part of the module name in the filter field eye, for example
  • Stock Weather Module Only Displayed in Landscape

    Unsolved
    2
    0 Votes
    2 Posts
    542 Views
    S
    @burnydoom i just did this module: "weather", position: "top_right", config: { locationID: "361058", apiKey: "xxx" } }, with my openweathermap apiKey in portrait mode and see this [image: 1659727745046-screenshot_2022-08-05_14-27-01.png]
  • Stock Weather Module Not Loading

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    S
    @sdetweil that was it. :man_facepalming_medium-dark_skin_tone: I totally missed that multiple times
  • Change Colour in calender

    Solved
    4
    1
    0 Votes
    4 Posts
    1k Views
    D
    IT WORKED … YES … MANY MANY THANKS! ahhhh so happy now !!!