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

    Posts

    Recent Best Controversial
    • RE: Remote into MM not working

      The “address”, “port” and “ip Whitelist” parts do not belong into this module but into the main structure of the config file. Look it up in other people 's config files.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • Weatherboy / -girl

      Hi all,

      there’s a range of weathermodules available but has anyone programmed or seen some depiction of a “weatherboy” (or girl) like this one?

      0_1562138824745_d815d1cb-1690-4f78-8822-d8ea5cf36e46-image.png

      Asking for my son :-)
      Would be great to implement this into the mirror for him.
      Also, some visual thermometer would be great!
      You know, things that small children can interprete.

      posted in Requests
      lavolp3L
      lavolp3
    • RE: MMM-Lunartic

      I’m astonished by the fact that “npm run config:check” seems to be so unknown in the community. It is a VERY important tool in my opinion.
      Whenever there is something odd, always run this one first to check if the config is ok.
      However, it took me about twenty lookups into the github readme to finally remember it correctly.

      posted in Education
      lavolp3L
      lavolp3
    • RE: Changing compliments

      @Stacy you have a synthax error in the config. Just check it by running

      npm run config:check
      

      from the magicmirror directory.
      OR post your compliments part of the config here.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Contribute to a module. Volunteers wanted! Easy!

      n1016 - Moers, Germany
      n957 - Duisburg, Germany
      n973 - Krefeld, Germany
      n2011 - Mülheim/Ruhr, Germany

      …yes, with an ü!

      Now you’re in a fine mess… hehe! :face_with_stuck-out_tongue_closed_eyes:

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Trashday modules based on ICAL

      @Screwyoudriver OK makes sense. I thought about some module like this as well.

      BTW: Another workaround would be to fetch the notification that is distributed by calendar:

      	broadcastEvents: function () {
      		var eventList = [];
      		for (var url in this.calendarData) {
      			var calendar = this.calendarData[url];
      			for (var e in calendar) {
      				var event = cloneObject(calendar[e]);
      				event.symbol = this.symbolsForUrl(url);
      				event.calendarName = this.calendarNameForUrl(url);
      				event.color = this.colorForUrl(url);
      				delete event.url;
      				eventList.push(event);
      			}
      		}
      
      		eventList.sort(function(a,b) {
      			return a.startDate - b.startDate;
      		});
      
      		this.sendNotification("CALENDAR_EVENTS", eventList);
      
      	}
      

      calendar could do the conversion work for the trash module, and the trash module could just fetch and filter the events for trash-related ones.

      posted in Requests
      lavolp3L
      lavolp3
    • RE: MMM-Random Fact

      Well for me this module does not work as well (only showing “Eine Tatsache bekommen” in German) and I have again Unhandled Rejection Warnings, which are not errors however… but I have the feeling they are related to the problem.

      (node:25288) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error
      0|mm       | (node:25288) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
      0|mm       | (node:25288) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): Error
      

      I only get these when I activate this module

      posted in Education
      lavolp3L
      lavolp3
    • RE: MMM-WetterOnline does not load

      @sil3ntstorm Looks like you need tio change the city to “hemau”.
      If the link works, the module only needs the city name.

      city: "hemau",
      
      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Updated, but 'MMM-EventHorizon' still shows as being behind.

      @richard238 Did you mean the other way around?
      Like “MM says your MMM-EventHorizon is 27 commits behind”

      Then go into modules/MMM-EventHorizon
      and do a

      git pull
      npm install
      

      You need to update the module (or better, the git repository) that is mentioned in the header. For that you need to go into the module folder and do above.
      Every 3rd party module is it’s own repository and needs to be maintained on its own.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Does "Top_Bar" 5-7 Day Weather Forecast Module Exist?

      @Mykle1 has created one I believe. I’ve seen some of his screenshots show a 1-liner width a multi-day forecast

      posted in Requests
      lavolp3L
      lavolp3
    • RE: MMM-Random Fact

      @cowboysdude
      Thanks dude :-), will try it out later today

      posted in Education
      lavolp3L
      lavolp3
    • RE: Installing on Android (tablet) possible?

      @Sean aaaaaaand there goes my free time in the coming holidays. Thanks for the link!

      posted in Hardware
      lavolp3L
      lavolp3
    • RE: CANNOT ADD MODULES

      @yawns said in CANNOT ADD MODULES:

      I prefer jshint.com

      This really is way better! Great! Doesn’t complain about tabs for indentation which is annoying with the other tool.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Euromillions display on MagicMirror

      @thymon 10 requests/month is very difficult to manage.
      You need to consider that every time the mirror gets restarted for whatever reason it will have forgotten the data and needs to send a new API request.
      A nightmare for people debugging or developing something.

      posted in Requests
      lavolp3L
      lavolp3
    • RE: MMM-Random Fact

      Well…
      “Eureka!”

      Apparently the problem is solved using this hack. There seems to be an issue with the google-translate-api npm module that some users solved with a fork.
      @cowboysdude look at it and let me know what you think.
      If the issue/solution is confirmed a workaround would be to have a working fork installed via npm.

      (need to get back to work now!!..)

      posted in Education
      lavolp3L
      lavolp3
    • RE: Glossy or Non-Glossy Display

      @thedk said in Glossy or Non-Glossy Display:

      The Mirastar is way darker, looks like you cant see everything when i have the light on. But you can see everything and, very imporant for me, you cant see the Display anymore.

      In case you haven’t and for completeness: Keep in mind as well that the css colors are set to quite dark greys, so additionally to mirror transmission, monitor brightness, you can as well maipulate the brightness of the texts using css.
      I have the feeling that lots of people don’t think abou that.

      posted in Hardware
      lavolp3L
      lavolp3
    • RE: I am stuck need help

      @yawns said in I am stuck need help:

      https://www.diffchecker.com/QQhBPpNO

      You’re full of valuable links!!! :-)

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Meross

      Meross has a cloud api so shouldn’t be too difficult to mplement.
      However I don’t have the hardware nor the time unfortunately.

      Also, you could easily create touch sliders with some css magic and event listeners.
      I have done this for my tasmota module.

      If you need the code, let me know.

      8131d15d-c707-4321-ad9f-762e1f3f1254-image.png

      posted in Requests
      lavolp3L
      lavolp3
    • RE: MMM-Random Fact

      @chassain-0 I have it working but changed lots of things on the frontend and in node_helper.js. So need to check the changes again.

      posted in Education
      lavolp3L
      lavolp3
    • RE: Raspberry Pi 4 Released !

      @SH20192 MM system works without changes on Raspbian Buster with the new kernel?
      I’m positively surprised…
      Gotta order a second one. Lol!

      posted in Hardware
      lavolp3L
      lavolp3
    • 1 / 1