A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Failed at the magicmirror@2.9.0 start script

    Solved
    8
    0 Votes
    8 Posts
    3k Views
    G
    Thank you Sam found the solution here https://github.com/eouia/MMM-AssistantMk2/issues/231 MM has stopped crashing. Greg
  • using octomirror

    Unsolved
    1
    1
    0 Votes
    1 Posts
    510 Views
    J
    Hello, I need your help to use the module linked to octoprint = octomirror my problem is that I haven’t some information as you can see on the screenshot.![alt text]([image: 1572468005668-capture.png] image url) I haven’t information sent from octoprint to see the data of my 3d printer. thanks in advance.
  • Calender Showing wrong day?

    Unsolved
    10
    0 Votes
    10 Posts
    2k Views
    StoffbeuteluweS
    https://forum.magicmirror.builders/topic/8856/calendar-module-1-day-error
  • Default news feed, make a list!

    Unsolved
    10
    1
    0 Votes
    10 Posts
    2k Views
    D
    @sdetweil Ok thanks!
  • Magicmirror display google reviews???

    Unsolved
    3
    1 Votes
    3 Posts
    825 Views
    S
    @Hellonoonan I don’t think anything like this exists today. I don’t know what the API capabilities are for getting access to the data. But I think it should be possible with development
  • GActions CLI Login Issue

    Unsolved google api google assistant gactions actions google assistant logging
    4
    0 Votes
    4 Posts
    1k Views
    ?
    @Lorenzo_Zappa @Sean if I override it, do I have to push it as a custom trail and therefore use gaction CLI? I think that is another issue with your prior login issue. For login issue; I’m using gactions cli also to provide custom action to my MMM-AssistantMk2 https://developers.google.com/assistant/tools/gactions-cli my steps are here; https://github.com/eouia/MMM-AssistantMk2/wiki/gAction Those are all I have to do. For traits issue; You have to add trait to your project. (It is called as custom trait but I think pre-defined trait makes a sense better) https://developers.google.com/assistant/sdk/guides/service/python/extend/register-device-traits Then response of Assistant will have some additional action field like “action.devices.commands.OnOff” when you say something like “turn on”. Before the registration, Assistant will response like “I can’t do” but after, response will be something defined in your action package. Then, you can do your job when that action is comming as a response.
  • help, auxilio, someone, alguien,

    Unsolved
    2
    0 Votes
    2 Posts
    600 Views
    S
    @bjjsoul Error: Cannot find module ‘nan’ yes, this module doesn’t install all its dependencies… do cd ~/MagicMirror npm install nan try again
  • mirror not starting

    Unsolved
    3
    0 Votes
    3 Posts
    829 Views
    S
    @mrdenmark the pm2_error.log should show the exception
  • MMM-Face-Reco-DNN

    Solved
    8
    0 Votes
    8 Posts
    2k Views
    B
    It works like a charm now. Thank you very much.
  • MMM-Remote-Control doesn't show IP address on MM2

    Unsolved
    2
    0 Votes
    2 Posts
    884 Views
    S
    @WillBuden yeh, that module doesn’t show the actual up address.
  • MMM Compliments

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    brobergB
    Looking at the code you only have morning start and end, and afternoon start and end. so eveningStartTime & eveningEndTime does nothing. So basically the time between afternoonEndTime and morningStartTime is considered evening. Anything put in anytime-compliments will be shown regardless of time. So if you really want to test it then remove the compliments from anytime and just run 2 morning, 2 afternoon and 2 evening compliments (alter the times you see it change) { module: "compliments", position: "lower_third", config: { updateInterval: 90000, morningStartTime: 14, morningEndTime: 15, afternoonStartTime: 15, afternoonEndTime: 16, compliments: { anytime: [ "anytime", ], morning: [ "morning1", "morning2", ], afternoon: [ "afternoon1", "afternoon2", ], evening: [ "evening1", "evening2", ] } } },
  • Question about two standard modules

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    B
    welcome and have fun with your mirror :winking_face:
  • new script to install/fix PM2 config for start on boot

    Solved
    6
    2 Votes
    6 Posts
    3k Views
    S
    I have submitted this script as part of pull request 1789
  • Error when trying to install the MagicMirror 2.

    Solved error magicmirror2 newbie
    4
    0 Votes
    4 Posts
    2k Views
    S
    @Doogain I submitted the changes to the project this morning so in the next release they should be included
  • Huge text that does not fit on the screen. Help!

    Unsolved
    4
    1
    0 Votes
    4 Posts
    1k Views
    Mykle1M
    @Mrtrol2013 https://forum.magicmirror.builders/topic/5619/how-to-find-and-use-key-commands-in-mm-for-absolute-beginners
  • installation without ssh

    Unsolved
    8
    0 Votes
    8 Posts
    2k Views
    S
    @mrdenmark I have never installed OS not gui mode… u need the gui, unless u are gonna run serveronly mode and access from a remote machine can u tell me output of uname -m?
  • npm install error

    Unsolved
    3
    4
    0 Votes
    3 Posts
    712 Views
    S
    @seongwoolee the version of nodejs does not support async maybe? can u tell us output of node -v and npm -v after update (git pull, npm install) , you would also have to run npm install in any module folder that has a package.json file, to update its dependencies what version is the original beautym package? see the version: ??? in the package.json file
  • Running MM in parallel to other application

    Unsolved
    3
    0 Votes
    3 Posts
    750 Views
    P
    Thanks for your reply Sam! I haven’t managed to get it to work, so I ended up going with the SmartWebDisplay module instead
  • hi, i need your help... tell me, how i do a new modules please

    Moved
    14
    0 Votes
    14 Posts
    5k Views
    R
    thanks all for your responses. i was having similar questions and your answers were helpful to me.
  • To delete a commit from git ..

    Unsolved
    4
    1
    0 Votes
    4 Posts
    1k Views
    S
    @emrhssla git log to get the commit number git reset --hard commit_number~ where commit_number is the id of the commit you wish to remove. this will update your local repo. if you have already pushed the commit to a remote, then you will have to repush with git push -f