A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Calendar: Change format of relative times/dates

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

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

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

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

    1
    0 Votes
    1 Posts
    244 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
    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
    16k 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?
  • MMM-Windy multiple layers

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    S
    @DeeZett said in MMM-Windy multiple layers: https://github.com/TheStigh/MMM-WindyV2 Since this is the only Windy thread, I’ll add my experience for search: I wasn’t able to get v2 to display anything. In v1 I found a way to edit the CSS and make the map less in-your-face, so it coexists with other modules: [image: 1600960869823-windy1-resized.jpg] [image: 1600960982072-screen-shot-2020-09-24-at-8.22.57-am.png]
  • Version 2.13 calendar parser info, HELP!!!!

    1
    0 Votes
    1 Posts
    271 Views
    S
    in 2.13 we are fixing the calendar handling for multiple timezones and non IANA timezone names. but to do this we are switching the library we use from ical.js to node-ical. currently in the develop branch the ical.js library is removed… any non-default calendar modules using the ical library will fail… are there any? CalendarExt2 uses its own copy of ical.js MMM-MyCalendar uses vendor/ical (which is broken already in 2.12) 2.13 is coming next week… help
  • MMM-Bring errors, not working

    3
    0 Votes
    3 Posts
    815 Views
    lavolp3L
    @secdude ok thanks for clarifying. Still this promise rejection should be handled. I would send an issue on github. Unhandled promise rejections are not nice and rather easy to avoid.
  • MMM-SORT still needs API key ?

    8
    0 Votes
    8 Posts
    2k Views
    thgmirrorT
    @sdetweil yes, I tried it but the parameter (margin/width/high etc.) drives me crazy…it was much easier for me to create a local html. And it is not time-critical. updating every 24 hours will be enough. Thomas
  • weatherforcast shows 1 day only

    5
    0 Votes
    5 Posts
    991 Views
    N
    @sdetweil anything else I should try? I ended up using raspberry.sh install method.
  • delete sudo commande ?

    7
    0 Votes
    7 Posts
    1k Views
    R
    @sdetweil , ok thanks you.
  • pm2 starts up then stops then starts up, then stops etc ...

    2
    0 Votes
    2 Posts
    304 Views
    S
    @RIKKO14 well, its not PM2, its that MM fails to start for some reason, and so, get restarted (thats pm2’s job, keep task running) I would guess its because Bugsounet has removed his modules, and/or made them not run under MichMich MagicMirror
  • MMM-Remote-Control works on Remote Interface but not on Mirror

    Unsolved
    8
    0 Votes
    8 Posts
    3k Views
    S
    @videogame95 show us what you did, please do NOT post in multiple topics
  • How Disable Module Update

    3
    0 Votes
    3 Posts
    700 Views
    T
    Hi, thanks for this answer. I will configure this right now. Simple et rapide Merci
  • iFrame and daily changing url ...

    6
    0 Votes
    6 Posts
    2k Views
    JalibuJ
    I would inspect the network traffic and try to reproduce it on the node backend.
  • 0 Votes
    27 Posts
    17k Views
    S
    @banbutcher so, there were two problems 0 cycle time and carouselId I had my brain screwed on crooked for carouselId. suppose you had multiple instances of the same module name in config.js, showing different things on different slides. when u define the slides, u use the module ‘name’, but in this case, name is not enough. so, in the module definitions themselves u add another unique identifier, carouselId: somestring. the value can be anything. in their config:{} section, that is where carousel module will look for ‘carouselId’ in the slide definition, when u come to that module to be displayed, instead of putting the name in quotes, you need a little structure { name: "module name", carouselId:"samevalue_added_to_module_config" } , that way the carousel module can tell which module instance should be shown