A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Comment désactiver le message "low voltage"

    6
    1
    0 Votes
    6 Posts
    3k Views
    D
    Bonjour J’ai désactivé le paquet “battery monitor plugin for lxpanel” et je n’ai plus l’info low voltage d’affiché . Merci Lavolp3 et les autres pour votre aide precieuse . Google Traduction : Hello I disabled the “battery monitor plugin for lxpanel” package and I no longer have the low voltage info displayed. Thank you Lavolp3 and the others for your precious help.
  • 0 Votes
    7 Posts
    3k Views
    H
    Some additional Information: In calendarfetcher.js and nodehelper.js is the following line: const Log = require("../../../js/logger.js"); If you copy the “calendar” folder down to “modules” this reference will be broken. So you have to change to: const Log = require("../../js/logger.js");
  • Module shown few minute after hiding it

    5
    0 Votes
    5 Posts
    1k Views
    H
    Hey guys, got a similar Probem with the Weatherforecast Module working with Pages Module. Weatherforecast is configurated on just one Page and shows up on every Page after update. I guess found a solutiion on that: On Weatherforcast.js on line 377 this.show(this.config.animationSpeed, { lockString: this.identifier }); is called. I guess this has to be done, when Module is shown up to update UI, but not if Module is hidden. So if (!this.hidden) this.show(this.config.animationSpeed, { lockString: this.identifier }); does the trick.
  • Dropbox-Uploader: how to synchronize a folder with cron job?

    11
    0 Votes
    11 Posts
    4k Views
    S
    @MajorC yes.pm2 reruns regardless how the system was rebooted
  • Cant recieve RSS feed

    rss magicmirror2 feed newsfeed xml
    4
    0 Votes
    4 Posts
    1k Views
    S
    @Abram the current code has no ability to see the header or its contents
  • MMM-Trello black screen

    7
    3
    0 Votes
    7 Posts
    1k Views
    S
    @trappettim see the report at the top of the troubleshooting section with the fix https://forum.magicmirror.builders/topic/13774/2-13-back-screen
  • Stuck trying to sendSocketNotification from my node_helper

    4
    0 Votes
    4 Posts
    684 Views
    S
    @seeshaughnessy you can continue to use axios. preferred as request has been depreciated. just add it to your package.json to get it loaded w your module # create package.json npm init -y # install a library and record it npm install axios --save # in your module folder
  • Has anyone got MMM-Remote-Control working on MM 2.11 ?

    Solved
    31
    0 Votes
    31 Posts
    17k Views
    MrCoffeeM
    @karsten13 Looks like I have got it. I just had to remove the 8080 out of http://192.168.xxx.xxx:8080/remote.html Sorry for that. Thanks for helping me.
  • Troubleshooting MagicMirror modules

    2
    1 Votes
    2 Posts
    2k Views
    FoziF
    @lavolp3 that’s awesome and should be a sticky thread! Thanks for that👍🏻👍🏻
  • How can i control MMM-MyRadio?

    Moved
    4
    0 Votes
    4 Posts
    569 Views
    S
    @Stef no… just looking at the doc shows the messages the radio module expects…
  • Compliments module cannot load remoteFile

    4
    0 Votes
    4 Posts
    626 Views
    S
    @kuqquk try changing address to “0.0.0.0”, from “localhost”,
  • Calendar: Change format of relative times/dates

    calendar
    7
    1
    0 Votes
    7 Posts
    2k Views
    S
    @cokelid yes, same as the others
  • Outlook Calendar Wrong Timezone

    calendar outlook
    3
    0 Votes
    3 Posts
    804 Views
    B
    Fixed on its own!
  • Weather module

    5
    0 Votes
    5 Posts
    712 Views
    B
    ok thanks for the information. That’s ok I learned something today
  • MMM-DarkSkyRadar

    1
    0 Votes
    1 Posts
    331 Views
    R
    Is there a way to make rain appear in green and snow appear in blue?
  • ... time format at the calendar

    1
    1
    0 Votes
    1 Posts
    233 Views
    KamiSchamiK
    I’m the new one 😜 I made a Magicmirror with FireTV Stick as an information module for the kitchen. I will present you again separately and have a question about it. I’m struggling with time formatting right now. What do I have to enter that the appointment also says “Tomorrow” and not the date. The following dates also say “In 3 days”. I’ve tried various things and never said “Tomorrow”. Could anyone help me out? Thank you [image: 1601460251916-20200930_111247.jpg]
  • Calender module shows the wrong local time

    7
    0 Votes
    7 Posts
    4k Views
    S
    @MajorC are u using the new temp calendar fixes? from the troubleshooting section?
  • Shairport-sync help needed

    5
    0 Votes
    5 Posts
    2k Views
    S
    @monkeyjb123 no idea. are you using MagicMirror OS which runs MM under docker?
  • MMM-ArduPort

    Moved
    14
    1
    0 Votes
    14 Posts
    4k Views
    S
    @Crime could you help this guy https://forum.magicmirror.builders/topic/13681/is-it-possible-to-ad-an-arduino/53 his sketch and module data don’t match.
  • weatherforecast showing only two days.

    31
    0 Votes
    31 Posts
    15k Views
    E
    Can anyone explain why the Free API from OpenWeatherMap shows 7 Day Forecast but the discussion here (and what I actually see) is only being able to retrieve 5 days? In looking at the documentation from the weather site, it appears that the URL should be constructed differently than how this weather module is building it out. Specifically, the URL should be something like: https://api.openweathermap.org/data/2.5/onecall?lat={lat}&lon={lon}&exclude={part}&appid={API key} But the URL is -actually- being built as: https://api.openweathermap.org/data/2.5/forecast?id={id}&appid={API key} It seems that the URL needs be different?