MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Ultimatum22
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    U
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 40
    • Groups 1

    Ultimatum22

    @Ultimatum22

    Module Developer
    6
    Reputation
    1.6k
    Profile views
    40
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Ultimatum22 Unfollow Follow
    Module Developer

    Best posts made by Ultimatum22

    • MMM-RandomBackground, Background from local folder

      As request by some, first version of showing random full size background from a local folder.

      [card:Ultimatum22/MMM-RandomBackground]

      It will load a photo’s from a photo directory in ~/MagicMirror/modules/MMM-RandomBackground, easiest way is by creating a Windows share. If somebody needs help with that let me know.

      This still has a lot of improvements, I will update the readme with future implementations and a list of issues. If you see any please let me know.

      posted in Entertainment
      U
      Ultimatum22
    • RE: Trouble with mm on start

      A very fast solution is too remove all desktop icons and set a black background. I used a different desktop then the default to fix this issue. I might do a tutorial if more people want a cleaner solution.

      posted in Troubleshooting
      U
      Ultimatum22
    • RE: Image Galery

      This is exactly what I am currently developing, loading random photos from a directory. For my personal use I want additional info about the photo, which I have done by using subdirectories. Last directory is the name who took the photo, the rest is the ‘album’.

      For example folder structure:
      photos\Vacation\Cuba - 2013\Dave
      photos\Vacation\Cuba - 2013\Erik
      photos\Vacation\Egypt - 2012\Dave

      This displays Vacation\Cuba - 2013 as album and Dave as person who took the photo. I am also trying to get the timestamp from the photo but not sure it works yet. I am going to make it an option to show extra photo information.

      Anybody still interested? I can do an early release in the near future.

      posted in Requests
      U
      Ultimatum22
    • RE: Attempting To Update

      Those files are auto created by the system, you can safely remove them.

      rm package-lock.json
      
      rm vendor/package-lock.json
      

      In order to update git requires that no local files have changes, that is what the error message means.
      Those files should really be in a .gitignore file but that is another issues. Removing the files should solve your issue.

      posted in Troubleshooting
      U
      Ultimatum22
    • RE: Help Translating Word Clock

      I didn’t found that other module, thanks for pointing it out.

      This is what I got so far, still a work in progress. The white square is supposed to be the rest minutes.
      0_1502901524555_MMM-WordClock.png

      posted in Requests
      U
      Ultimatum22

    Latest posts made by Ultimatum22

    • RE: Stuck on creating a new fetcher

      @cotxwx When you start the MM and it hangs try to access the webpage through another computer/phone. Go to <:8080 (I believe it was). If you are able to see the MM then it correctly starts (this is my assumption).

      If it doesn’t work can you try to just run npm start without the DISPLAY=:0.

      posted in Troubleshooting
      U
      Ultimatum22
    • RE: MMM-SoccerLiveScore no pictures

      @ernst-jan said in MMM-SoccerLiveScore no pictures:

      at Request._callback (/home/pi/MagicMirror/modules/MMM-SoccerLiveScore/node_helper.js:36:30)

      You left out the most important line. The first line says there is something wrong at line 36 character 30 in the file node_helper.js but probably is the error above this. So post a bit more or upload the log somewhere. But this looks more like a bug in the plugin itself and not the core system.

      posted in Bug Hunt
      U
      Ultimatum22
    • RE: Stuck on creating a new fetcher

      DISPLAY=:0 meansyou have a screen at which you show the interface, what do you see on that screen, nothing? I haven’t install MM for a while, is there a log file by any change in the root MM folder?

      Try to run in dev mode, might give you more information

      npm start dev
      
      posted in Troubleshooting
      U
      Ultimatum22
    • RE: region.lower.third move downward

      In your second code example you are missing the . for region.

      Make sure you copy paste the code exactly, dots and hashes are important

      posted in Development
      U
      Ultimatum22
    • RE: News error

      Read the error message, ad.nl is not supported. If you check the sources you see which sources are available

      https://newsapi.org/v2/sources?apiKey=b33df8fffc4f47c6a75926a4bfd40088

      posted in Bug Hunt
      U
      Ultimatum22
    • RE: Attempting To Update

      @lavolp3 Because they are automatically generated files, you don’t include them in a repository.

      package-lock.json is automatically generated for any operations where npm modifies either the node_modules tree, or package.json. It describes the exact tree that was generated, such that subsequent installs are able to generate identical trees, regardless of intermediate dependency updates.
      

      https://docs.npmjs.com/files/package-lock.json

      posted in Troubleshooting
      U
      Ultimatum22
    • RE: Attempting To Update

      Those files are auto created by the system, you can safely remove them.

      rm package-lock.json
      
      rm vendor/package-lock.json
      

      In order to update git requires that no local files have changes, that is what the error message means.
      Those files should really be in a .gitignore file but that is another issues. Removing the files should solve your issue.

      posted in Troubleshooting
      U
      Ultimatum22
    • RE: Exchange SD-card RPi with Zero W

      @MM-Hans That is true, Mykle1 already said that. My post was after you swapped the SD card with an existing installation of MM on it.

      posted in Troubleshooting
      U
      Ultimatum22
    • RE: Exchange SD-card RPi with Zero W

      @MM-Hans Check if this works, haven’t tried it myself but problems looks the same.

      https://blog.miniarray.com/installing-node-js-on-a-raspberry-pi-zero-21a1522db2bb

      posted in Troubleshooting
      U
      Ultimatum22
    • RE: Magic Mirror on Jessie Lite

      @ROMSY Yes that is possible, I have done it too. It is a bit more hastle because the splashscreen didn’t work after the automatic installer and you have to do some manual stuff as linked by broberg earlier in this topic.

      posted in Tutorials
      U
      Ultimatum22