Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. lavolp3
    MagicMirror² v2.15.0 is available! For more information about this release, check out this topic.
    • Profile
    • Following 0
    • Followers 8
    • Topics 36
    • Posts 836
    • Best 114
    • Groups 3

    lavolp3

    @lavolp3

    Module Developer

    133
    Reputation
    5116
    Profile views
    836
    Posts
    8
    Followers
    0
    Following
    Joined Last Online
    Location Moers, Germany

    lavolp3 Follow
    Project Sponsor Module Developer Moderator

    Best posts made by lavolp3

    • RE: MMM-Random Fact

      @lavolp3
      PR sent
      https://github.com/cowboysdude/MMM-rfacts/pull/12

      It seems I have done a bit too much JS programming in recent months… Lol.

      @cowboysdude have a look at it and let me know what you think.

      posted in Education
      lavolp3
      lavolp3
    • RE: Rude Module Developers

      So I did a little research and I can’t really comprehend.
      I cannot find any developer being just a little rude to you at all!

      “Feel free to fork the module and customize it for your own needs.”

      Rude?

      Only one developer suggesting (!) to you to make your own fork. While I think working with PR’s and improving the original module is better I guess you can just respect his view.

      Sorry but we’re all at the beginning at some point (I am as well).
      Pointing out someone as rude just because he is not interested in doing the work you suggested is a bit off.

      Go ahead, learn more Javascript, do forks and send PR’s.
      It’s fun!

      posted in General Discussion
      lavolp3
      lavolp3
    • RE: [MMM-Showtimes] Local Cinema Showtimes

      @seann
      My suggestion: Fire up the mirror UI on your browser, press F12, move the move over your module, right click -> inspect.
      Then look at the styles section and play with switching styles on and off.
      Then you can use whatever you need in your own css overwriting main.css in your module.

      posted in Entertainment
      lavolp3
      lavolp3
    • RE: Considering taking donations to support the MagicMirror project. Interested in your thoughts!

      0_1550007639198_e2a7dad3-7ad2-4768-9999-c7c584f3b279-image.png

      (Sorry, too tempting…)

      I’d definitely donate. I love this whole project.

      posted in MagicMirror
      lavolp3
      lavolp3
    • RE: MMM-rainfc wouldn't start/show

      Please note there is a more recent module also using the buienradar API called MMM-rain-forecast.

      Apart from that can you please post the config entry and confirm that you have cloned the module to the MagicMirror/modules folder and not to the MagicMirror folder itself? 🙂

      posted in Troubleshooting
      lavolp3
      lavolp3
    • RE: About to build for the first time, dont understand the point of the OS.

      As @broberg said: Freedom! You can do anything and you can use the OS itself for any further Raspbian things you would like. (A mirror as a jdownloader host? possible… Measuring temp in bath room directly using the mirror? possible…)
      There are so many possibilities…

      Also, you don’t necessarily have to throw any html or setup a web server. It’s all done automatically at the installation.
      Yes, if you want to go forward there’s a lot to learn, but I have contributed / played with a lot of modules already and not written more than 3 lines of html (albeit lots of JS)

      posted in General Discussion
      lavolp3
      lavolp3
    • MMM-Comics

      MMM-Comics

      A module for MagicMirror2 that displays several comic strips (sources updated on demand)

      Description

      Based on (and forked from) andrecarluccis MMM-DailyDilbert module, this is a module for MagicMirror2 that displays the current daily or random comic strips from famous cartoons. You can choose to display a coloured or a b/w version of the comic strips (b/w does not always work that well, try it out).
      Additionally you can choose a daily time frame at which the current daily comic is being shown (supported only for dilbert, dilbert_de and xkcd). For the rest of the day, or if the comic is archived, a random comic is picked.

      Screenshot

      Example image

      Have fun!

      posted in Entertainment
      lavolp3
      lavolp3
    • RE: New Install From Raspbian Stretch

      Guys be careful with the npm vulnerabilities!
      It’s not advisable to always fix all of them.
      E.g. if a vulnerability wants to have a most recent version of an important dependency, fixing it might even break your working MM because MM can’t work with this new dependency.

      If you’re not completely sure what you’re doing then leave them.
      They are not errors after all, your modules should work with these vulnerabilities as well.

      posted in Troubleshooting
      lavolp3
      lavolp3
    • RE: MMM-Powerwall

      I want to have a powerwall, a solar panel and a tesla just to try out this module!

      posted in Utilities
      lavolp3
      lavolp3
    • RE: Better speech recognition engine?

      Now you have my full attention! 🙂
      Sounds exciting! Good luck with development!

      Do you now jasper?
      “Jasper is an open source platform for developing always-on, voice-controlled applications”
      https://jasperproject.github.io/
      Maybe worth a look?

      E.g.:
      “Julius is a high-performance open source speech recognition engine. It does not need an active internet connection. Please note that you will need to train your own acoustic model, which is a very complex task that we do not provide support for. Regular users are most likely better suited with one of the other STT engines listed here.”
      (from the documentation)

      posted in Development
      lavolp3
      lavolp3

    Latest posts made by lavolp3

    • RE: MMM-Scoreboard, screen all black

      @carlslylike1 Interesting. Never experienced this while posting config extracts.

      posted in Troubleshooting
      lavolp3
      lavolp3
    • RE: MMM-Scoreboard, screen all black

      @carlslylike1 Next time, try to provide the config entry and the two modules around it so we can debug it.
      Also, look into the link in my signature for troubleshooting advice.
      My first troubleshooting action would be

      npm run config:check
      

      and send the resuls here if you don’t understand yourself

      posted in Troubleshooting
      lavolp3
      lavolp3
    • RE: Compliments: RemoteFile Configuration

      @jacktar Here is the underlying function

      	/* complimentFile(callback)
      	 * Retrieve a file from the local filesystem
      	 */
      	complimentFile: function (callback) {
      		var xobj = new XMLHttpRequest(),
      			isRemote = this.config.remoteFile.indexOf("http://") === 0 || this.config.remoteFile.indexOf("https://") === 0,
      			path = isRemote ? this.config.remoteFile : this.file(this.config.remoteFile);
      		xobj.overrideMimeType("application/json");
      		xobj.open("GET", path, true);
      		xobj.onreadystatechange = function () {
      			if (xobj.readyState === 4 && xobj.status === 200) {
      				callback(xobj.responseText);
      			}
      		};
      		xobj.send(null);
      	},
      

      Whenever you use a “http://” or “https://” path it takes the path as you have provided. If not it converts it to an absolute path using the this.file(this.config.remoteFile) method. This method uses the modules directory (like you can see in my post above) and appends the path you have given

      posted in Troubleshooting
      lavolp3
      lavolp3
    • RE: Compliments: RemoteFile Configuration

      @jacktar said in Compliments: RemoteFile Configuration:

      compliments.js:134 GET http://0.0.0.0:8080/modules/default/compliments/file://home/pi/MagicMirror/compliments.json 404 (Not Found)

      You see the problem in the error message.
      The variable remoteFilegets appended to an existing path which is http://0.0.0.0:8080/modules/default/compliments/.

      You only need to put in the name of the file without a path and put your file into the compliments folder.

      posted in Troubleshooting
      lavolp3
      lavolp3
    • RE: MMM-mycroft-wakeword

      @goldyfruit Looks very interesting! What are you doing with Mycroft?
      I’d love to setup a capable assistant that is not using a cloud

      posted in Utilities
      lavolp3
      lavolp3
    • RE: New use for MagicMirror

      @smowk
      Great stuff! Just… how?
      Can you give a bit more description of your project? I mean I generally like the drama part but lots of people might not want to click that link

      posted in Show your Mirror
      lavolp3
      lavolp3
    • RE: Calendar module fetching errors since 2.15

      OK some of the errors have apparently been solved by usings sam’s upgrade script. I was a bit to fast with the reporting.

      The latter one not.
      For moment().tz I see one needs to include moment-timezone when using node.js. Which is not being done in calendarutils.js.
      Why am I the only one experiencing this issue?

      posted in Troubleshooting
      lavolp3
      lavolp3
    • Calendar module fetching errors since 2.15

      The calendar module throws out errors and does not start anymore for me due to following error:
      Two public calendars give:

       [ERROR] Calendar Error. Could not fetch calendar:  https://calendar.google.com/calendar/ical/xxxxxxxxx%40group.calendar.google.com/public/basic.ics 
      Cannot read property 'guess' of undefined
      

      My private calendar has the issue:

      Calendar Error. Could not fetch calendar:  https://calendar.google.com/calendar/ical/xx.xxx%40gmail.com/private-xxxxxxxxxxxxxxxxb/basic.ics 
      moment.tz is not a function
      

      I THINK the moment.tz error has been there before and i solved that locally but have overwritten the solution in the meantime.

      Anyone else have these problems or any suggestions?

      Anyone

      posted in Troubleshooting
      lavolp3
      lavolp3
    • RE: MMM-SoccerLiveScore

      @0m4r Happy to help out with the development if you can provide the raw data from the API.
      Cheers!

      posted in Sport
      lavolp3
      lavolp3
    • RE: MMM-SoccerLiveScore

      @0m4r YOur module is looking better and better. Have you had the cahnce to look for more details about game scores.
      I’m looking for something like

                  Manchester City     2 - 1    Dortmund
                   1:0 De Bruyne 19' 1:1 Reus 84' 
                   2:1 Foden 90'
      

      to show on first sight.

      posted in Sport
      lavolp3
      lavolp3