A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • CalendarExt3Journal fit with other modules

    Solved
    10
    0 Votes
    10 Posts
    932 Views
    C
    @MMRIZE It’s all good, it works fine now. I’m now going to try to add buttons that let someone move to the next or previous week in the calendar, so I’ll probably have more questions soon… Thanks again.
  • EBADENGINE

    Unsolved
    12
    0 Votes
    12 Posts
    1k Views
    S
    @juicebox tried what? you flashed a new SD card, with some full image (as required) booted the new sd card and then ran my script show me the ~/install.log you CANNOT just run the script… as it does NOT undo the bad node version
  • MMM-Pir

    Solved
    34
    0 Votes
    34 Posts
    6k Views
    bugsounetB
    @sdetweil of course not :)
  • Display Issue

    Unsolved display troubleshoot question
    3
    0 Votes
    3 Posts
    691 Views
    X
    @sdetweil So if I look at the screen with it above my head, so looking upwards at it, it looks good and how I would like it look. However if the screen in below my head, so I’m looking downward at it, then I can clearly see the entire monitor through the plexiglass. The glow from the screen even in the black areas with no text can clearly be seen, even though it’s at the lowest dim level. I know online everyone says how great Pilkington MirroView looks as a end result though I can’t find anywhere to order it online, only calling the company directly and talking to someone. I’m just wondering if anyone has thoughts on the best route to go. Would buying MirroView block the ambient light from the screen better? Or would I still have the same problem and looking for a new screen is probably the only way to go?
  • Where do I find the Logs?

    Solved
    2
    0 Votes
    2 Posts
    502 Views
    S
    @aunrea there are two places Where you did npm start If you are using pm2 to launch MagicMirror then pm2 logs --lines=xxx Where xxx is the number of lines to show (default 15) In the browser log, open the developers window, ctrl-shift-i, and select the console tab
  • I cant get my Calender or my MMMBitcoin to work, any help please?

    Unsolved
    19
    1
    0 Votes
    19 Posts
    2k Views
    S
    @clarkcrew32 can this be marked resolved?
  • MMM-Calendar showing multi day event with start day not current day

    Unsolved
    15
    0 Votes
    15 Posts
    3k Views
    S
    @bergmannfrank can you test this?
  • MMM-CalendarExt - Startup problem

    Solved
    7
    0 Votes
    7 Posts
    989 Views
    KristjanESPERANTOK
    @Bimtronic Try MMM-CalendarExt3 instead of MMM-CalendarExt. MMM-CalendarExt is no longer maintained.
  • Installing MagicMirror on Windows 10

    Solved
    6
    0 Votes
    6 Posts
    1k Views
    S
    @edwardbuck My Condolensces… nothing more important than family thank you for your time trying again… glad you have it working give a shout if you need more helpw ith anything.
  • MMM-Face-Reco-DNN (No module named 'face_recognition')

    Solved
    9
    0 Votes
    9 Posts
    1k Views
    S
    @Zinkeler glad you go it!
  • Auto-restart after quitting

    Unsolved
    6
    0 Votes
    6 Posts
    589 Views
    S
    @cpcode well, a script or pm2 with a script… I’ve never heard of MM restarting if you use npm start and select close or use ctrl-q
  • MMM-GoogleTasks - show Completed until next day starts

    Unsolved
    1
    0 Votes
    1 Posts
    121 Views
    H
    I assume this is possible but I can’t figure out the coding - very new to MM and JS. Any help will be appreciated. I have a task list with mostly recurring tasks but each day 1-3 non-recurring tasks get added to the list. With showCompleted: true, all tasks show throughout the day, then at some point overnight the Completed recurring tasks drop and get replaced by the Incomplete task for the new day. However, all the non-recurring tasks stay so that after a few days there’s along list of Completed tasks. How do I have all Completed show until the end of the day, midnight, whatever, then have the non-recurring drop along with the recurring?
  • Calendar - Past Events are a different color/shade

    Solved
    3
    1
    0 Votes
    3 Posts
    443 Views
    R
    @chrisfr1976 Nailed it! Thank you
  • Adding background image to analog clock.

    Solved
    10
    1
    1 Votes
    10 Posts
    1k Views
    J
    @ChrisLeduex – OK, thanks. I wasn’t sure that the url path went anywhere in particular.
  • new compositor on wayland

    Solved
    18
    3 Votes
    18 Posts
    5k Views
    S
    @lxne you can switch back to x11 using raspi-config
  • Weather symbol missing

    Solved
    9
    1
    0 Votes
    9 Posts
    301 Views
    S
    @dRagon glad you found it!
  • ERROR:network_service_instance_impl.cc(600)

    Unsolved
    7
    1
    0 Votes
    7 Posts
    1k Views
    S
    @togletree93 I added a new script at the end of the scripts page https://github.com/sdetweil/MagicMirror_scripts this will install my startup script in the package.json and update the installers/mm.sh to indicate which browser to use (and install the browser you pick from a list if not already installed) this will run mm in server only mode and then launch a browser over it like you did manually the look is identical, (alth0 midori browser has gotten troublesome with its parameter handling and MAY need to have its window maximized manually
  • MMM-CalenarExt3 : eventTransformer not working on evets with specific start time

    Solved
    1
    0 Votes
    1 Posts
    134 Views
    H
    In the code below, events with “Bday” in the title are correctly colored but the “birthday-icon” is not applied. They are all full day events. The intent is that each person has a color and icon applied to their events but events with a specific start time are not transformed. What am I doing wrong? I will appreciate specifics and examples of correct code. I’ve had the Pi running a week and these are my first attempts at coding and I’m struggling with some of it. I tried using eventNames and then using the custom.css to color events but couldn’t get that to work for any events including full day. ``` module: “MMM-CalendarExt3”, position: “bottom_bar”, title: “May Cubed”, config: { mode: “month”, instanceId: “combinedCalendar”, locale: ‘en-US’, maxEventLines: 6, showMore: true, firstDayOfWeek: 0, useMarquee: false, calendarSet: [], //<-- can enter “name of calendar from calendar module” to display only that one. Works in combination with InstanceId eventTransformer: (ev) => { if (ev.title && ev.title.search("Bday") > -1) { ev.color = "#3056FF" //ev.symbol = "birthday-cake" <--is there something to do this in transform? I have them as keyword customEvents under the calendar module } else if (ev.title && ev.title.search("Name1") > -1) { ev.color = "#80ef80", //ev.symbol = "flower-tulip" <--same comment as above
  • MMM-Remote-Control Alternative

    Unsolved
    15
    0 Votes
    15 Posts
    4k Views
    S
    @atwist the googleassistant author has coded it that way don’t know why.
  • Contributing to a GitHub repository - a bit stuck

    Solved
    9
    0 Votes
    9 Posts
    822 Views
    evroomE
    @mumblebaj said in Contributing to a GitHub repository - a bit stuck: Make sure it is set to bash. It is set to zsh. No issue to change it to bash, but is there a reasoning behind it ? Stupidly enough I had this Terminal open the whole time. I just did ‘Commit’ from within VS Code and then did ‘Sync Changes’. Result: % git status On branch evroom Your branch is up to date with 'origin/evroom'. nothing to commit, working tree clean So that works just fine. I also made a change using the Terminal and then did the add and commit from the Terminal. In the Source Control pane you can see what you do on the command line in real time.