A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • new tutorial pls

    20
    0 Votes
    20 Posts
    5k Views
    R
    after days of searching and a completely new installation I finally managed to get everything working, I finally did a rebuild of electron and then it works (and then in Dutch although I thought that this language was not supported )
  • IR Overlay - pulling hair out !

    5
    0 Votes
    5 Posts
    2k Views
    SnilleS
    Hi, I had the same issue when I built my mirror… Here is how I solved it. Made a .sh script with all the information: :) #!/bin/bash # Before I just tested with the xinput command directly in the autostart file, but that did not work. So now instead I just created a script called xin.sh. # nano ~/xin.sh # Then added # DISPLAY=:0.0 xinput --set-prop "Multi touch Multi touch overlay device" "Coordinate Transformation Matrix" 0 1 0 -1 0 1 0 0 1 # There should actually be 3 spaces between “Multi touch” and “Multi touch overlay device”. For some reason the board removes the extra spaces here. # # You can actually find the “name” of the device with this command form a console: DISPLAY=:0.0 xinput list # Shows something like this: # # Virtual core pointer id=2 [master pointer (3)] # Virtual core XTEST pointer id=4 [slave pointer (2)] # Multi touch Multi touch overlay device id=6 [slave pointer (2)] # Virtual core keyboard id=3 [master keyboard (2)] # Virtual core XTEST keyboard id=5 [slave keyboard (3)] # # Depending on what you have connected to your RPi. 🙂 # # So, after creating the xin.sh I added that to the autostart file for LXDE: # Like this: # nano ~/.config/lxsession/LXDE-pi/autostart # Added at the end of the file. # @/home/pi/xin.sh # Restarted and it works. # DISPLAY=:0.0 xinput --set-prop "Multi touch Multi touch overlay device" "Coordinate Transformation Matrix" 0 1 0 -1 0 1 0 0 1 Maybe you guys can use it some how? :)
  • FaceRecog and Selfie : Streaming error

    3
    0 Votes
    3 Posts
    549 Views
    Z
    Thanks for your answer… I’ll try to think about an other way then. Cheers
  • Can I scale down the entire mirror?

    4
    0 Votes
    4 Posts
    873 Views
    Mykle1M
    @seeshaughnessy I think you’ll like this, regarding key commands https://forum.magicmirror.builders/topic/5619/how-to-find-and-use-key-commands-in-mm-for-absolute-beginners?_=1602206672933
  • More Problems with Calendar

    7
    0 Votes
    7 Posts
    1k Views
    S
    @BKeyport for your next event { module: "calendar", header: "Next Event", position: "top_left", config: { maximumEntries: 1, calendars: [ { url: ....} ] } }
  • MMM-NowPlayingOnSpotify stop working after v2.13 update

    46
    0 Votes
    46 Posts
    20k Views
    P
    @sdetweil yeah kind of. Although I have set api.spotify.com to be static for some reason. I haven’t had any issues until now. maybe something was changed on Spotify side.
  • Error with Outlook Calendar

    23
    0 Votes
    23 Posts
    8k Views
    B
    @sdetweil Good to know! I’m glad this was helpful.
  • Trouble to uopdate MagicMirror

    5
    0 Votes
    5 Posts
    1k Views
    S
    @sdetweil yes
  • Calendar failed to load Gmail ical

    4
    0 Votes
    4 Posts
    389 Views
    S
    @barucomx i need a short ics file from you that causes this problem so we can fix it…
  • Calendar iCAL not working since 2.13 update

    7
    0 Votes
    7 Posts
    1k Views
    S
    @SdR shouldn’t have needed the reboot. if using pm2 to start mm just use the command pm2 restart 0
  • Black screen after 2.13 update - tentatively resolved

    53
    0 Votes
    53 Posts
    20k Views
    S
    @Klinge is this on windows? as you did \MagicMirror
  • MMM-Weather-Now is borking my MagicMirror after v2.13.0 update

    8
    0 Votes
    8 Posts
    894 Views
    schrutesbeetsS
    @sdetweil nice thanks
  • Cant start after update 2.13

    12
    0 Votes
    12 Posts
    1k Views
    S
    @SuseGigabyte no problem, see https://forum.magicmirror.builders/topic/67/forum-posting-tips?_=1601749531385
  • MagicMirror Newsfeed continually "loading"...

    Unsolved
    24
    0 Votes
    24 Posts
    9k Views
    S
    @Parvez hotword has been removed, and is no longer available. to use GoogleAssistant you have to install MMM-GoogleAssistant .also bugsounet has removed some of his modules
  • MMM-Pages - no rotation

    5
    0 Votes
    5 Posts
    873 Views
    C
    i can’t help you with this module. check config and position. you can add “disabled: true” to MMM-pages and some other modules to check the display
  • Starting MM ask for git user

    2
    0 Votes
    2 Posts
    454 Views
    S
    @knubbl need more info. can u show me the page that is asking for git info…
  • Correct json syntax (MMM-Json-Table)

    7
    0 Votes
    7 Posts
    1k Views
    R
    hi @grinly no worries : ) I agree, I think MMM-JsonTable doesn’t like the structure of the json message you’re getting back - it’s expecting to see information laid out in an array and isn’t set up to parse a different message structure. Your investigations into Node-RED sound interesting - it’s not something I’ve tried but just from a quick look you might well be able to get it to act as an intermediary between your inverter and MagicMirror. If you’ve managed to get Node-RED to call the inverter endpoint for the energy data then that’s a good start. You’re right, if you go this route I think you’ll still have to clean up/reformat the message for consumption by MMM-JsonTable. But the Node-RED documentation might help - it does look like there are ways to get data back to the module too - you could perhaps get MMM-JsonTable to call a Node-RED endpoint instead of the inverter directly, and Node-RED could serve “cleaned-up” json back to MM? https://cookbook.nodered.org/http/serve-json-content Another option might be to see if there’s an alternative MagicMirror module that can handle (or be configured to handle) a wider range of json (or XML) messages? Though you might have to get hands-on with a module to adjust it exactly the way you wanted. If your json message always follows the same format it shouldn’t be too hard to extract the values you’re interested in - I think there are some fairly straightforward modules that would give you an outline of how to request and parse json (e.g. MMM-stocks maybe?). If you wanted the output shown in a table you could take a look inside MMM-JsonTable and see how it’s done there too. Just scrolling the 3rd-party modules list there’s also MMM-Tabulator? I’ve not used this one either but it mentions displaying data from XML or json sources, so it might be worth a try.
  • screen goes to sleep after 2.13 update

    2
    0 Votes
    2 Posts
    323 Views
    S
    @bynan yeh, updates… run the screensaver off script from here https://github.com/sdetweil/MagicMirror_scripts
  • default-calendar recurring events aren't being adjusted for the timezone.

    8
    0 Votes
    8 Posts
    1k Views
    S
    @jeffeb3 said in default-calendar recurring events aren't being adjusted for the timezone.: and it is displaying those in the right timezone now. awesome… thanks so much for the extra effort to test…
  • any mac(osX catalina) MagicMirror users (with a windows machine nearby)

    1
    0 Votes
    1 Posts
    273 Views
    S
    I use a samba share from a linux box to all my devices and systems… window, pi, mac. i have access to the share on my mac… BUT not if pm2 starts MM… I get access denied… if I stop the pm2 instance and then start MM with npm start it works fine… this is the MMM-ImagesPhotos module, with a soft link (ln -s) to the share from the module folder.