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

    Posts

    Recent Best Controversial
    • RE: MMM-BackgroundSlideshow gradient and horizontalGradient not working

      I solved it by myself. So here for the rest of the world or maybe for myself in a couple of months.

      The following config is working:

                      {
      			module: 'MMM-BackgroundSlideshow',
      			position: 'fullscreen_below',
      			config: {
      				imagePaths: ['modules/MMM-BackgroundSlideshow/BackgroundImages'],
      				transitionImages: true,
      				transitions: ['opacity'],
      				randomizeImageOrder: true,
      				slideshowSpeed: 500000,
      				gradientDirection: 'both',
      				gradient: [ "rgba(0, 0, 0, 0.00) 0%", "rgba(0, 0, 0, 0.00) 0%", "rgba(0, 0, 0, 0.00) 90%", "rgba(0, 0, 0, 0.75) 100%" ], //von oben nach unten, % = wo im Bildschirm startet es
      				horizontalGradient: [ "rgba(0, 0, 0, 0.75) 0%", "rgba(0, 0, 0, 0) 15%", "rgba(0, 0, 0, 0.00) 85%", "rgba(0, 0, 0, 0.75) 100%" ] //von links nach rechts, % = wo im Bildschirm startet es 
      			}
      		},
      

      In addition, you have to change a line in the MMM-BackgroundSlideshow.js file in the getDom function (line 316)

      OLD: this.createGradientDiv('right', this.config.gradient, wrapper);
      NEW: this.createGradientDiv('right', this.config.horizontalGradient, wrapper);
      

      I will put this on GitHub as well.

      posted in Troubleshooting
      M
      MajorC
    • RE: MMM-Buienalarm

      Hi,

      I tried the module today with the default confit and it only shows “no data” / “Keine Daten!”.

      I use: lat: 52.15 and lon: 5.55.

      Any ideas?

      Update: Sorry, I took a while, but now I see some data.

      Christian

      posted in Utilities
      M
      MajorC
    • RE: MMM-rain-forecast

      So now I have to find a good soure for German rain data.

      posted in Utilities
      M
      MajorC
    • RE: My mirror

      @JerryP said in My mirror:

      @George
      Ken you tell me whits module this is pleas. The rainfall

      Schermafbeelding 2021-01-06 om 16.12.23.png

      that looks very good!

      posted in Show your Mirror
      M
      MajorC
    • RE: made a fresh install with magic mirror os, how to refresh after update config.js file

      You can use Strg + Q or Ctrol + Q if a keyboard is attached.

      posted in Troubleshooting
      M
      MajorC
    • RE: MMM-doomsDay - The countdown module,

      Hello,

      first of all thank you for the great modules. I am currently using it to display the time until my vacation.

      Since I speak German, I made a few changes in the code. But these are lost after an update and I copy & paste them back. Is there a better way to make these changes than fiddling around in the code?

      I change:

      ORIGINAL: headerD.innerHTML = this.config.toWhat + "</br>";
      MY:       headerD.innerHTML = this.config.toWhat;
      
      ORIGINAL: timeLeft.innerHTML = daysLeft + " " + this.config.singular;
      MY:       timeLeft.innerHTML = this.config.singular;
      
      ORIGINAL: timeLeft.innerHTML = daysLeft + " " + this.config.plural;
      MY:       timeLeft.innerHTML = " noch " + daysLeft + " " + this.config.plural;
      
      posted in Utilities
      M
      MajorC
    • RE: UPDATE: Replaced my PIR-Sensor with a Doppler Microwave Sensor.

      Hi @Fozi ,

      just to make sure that I am on the right way:

      • Buy a RCWL-0516 module
      • Wire the module to my Raspberry Pi 4
      • Install @Bugsounet MMM-NewPIR on my MM

      That’s it? Or did I miss something?
      My MM is not a mirror, more a wall-mounted picture frame with some nice to have information on it. I would like to have the monitor turned off, if nobody is in the room.

      Thank you,

      Christian

      posted in Tutorials
      M
      MajorC
    • RE: MMM-BackgroundSlideshow gradient and horizontalGradient not working

      Hello World,

      can someone give me a hand? I am sure I am not the only one using this module :-)

      Thanks

      posted in Troubleshooting
      M
      MajorC
    • RE: Reduce font size in System stats

      It is very easy,

      in the folder

      /home/pi/MagicMirror/css
      

      copy&paste the main.css and rename it to custom.css.

      Delete everything in the NEW file and copy&paste what I wrote.

      Than restart you MM.

      posted in Development
      M
      MajorC
    • RE: Reduce font size in System stats

      Try:

      /**
       * MMM-SystemStats styles
       */
      .MMM-SystemStats table {
      	width: 350px; 
      	/*color: #666; */
      	font-size: 20px;
       }
       
      .MMM-SystemStats td {
          line-height: 25px;
      }
      
      posted in Development
      M
      MajorC
    • 1 / 1