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: calendar shading

      @george Sorry George but that’s not the appropriate way to do it.
      Doing that you will mess things up as soon as you want to update the module.

      Every css-thing you want to change, you transfer to custom.css and make your changes there.
      custom.css always overwrites entries in the module css files, so it takes precedence.

      Also I think the calendar module is meant here and not MMM-MyCalendar.

      @Sceetch congrats to the vaccination :-).
      Also, move into the modules/default/calendar folder, look into the calendar.css for any time entries. You will find:

      .calendar .time {
        padding-left: 30px;
        text-align: right;
        vertical-align: top;
      }
      

      Now edit custom.css and add

      .calendar .time {
      
      }
      

      Every entry you make here adds to the above from calendar.css.
      Try to play with this, e.g. by putting in font-wight: bold

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Help with updateDom()

      @CreepinJesus said in Help with updateDom():

      I think (may be wrong) the config is read only inside the module,

      that’s not true. The config values can be manipulated.

      posted in Development
      lavolp3L
      lavolp3
    • RE: UPDATE: Replaced my PIR-Sensor with a Doppler Microwave Sensor.

      @Fozi The odd thing is that I didn’t even get the module installed properly. However, just tried again and it seems to work now. Maybe because of MM v 2.10.0. I don’t know…

      posted in Tutorials
      lavolp3L
      lavolp3
    • RE: MMM-forecast-io -- Localized up to the minute weather

      For anyone interested:
      I have played around with this module quite intensively, implemented the chartjs library and did a few other tweaks and it looks like this now on my mirror.

      https://imgur.com/ZqJBGLp

      https://imgur.com/JmxnJ3p

      Most important changes:

      • the graph now shows several things:
        – cloud cover in the background
        – day and night cycle through different colors
        – rain amount in the foreground
      • temperature bars are colored according to temperature scale (currently only °C)
      • rain amount instead of rain percentage for daily forecast

      Anyone interested can try out my fork
      https://github.com/lavolp3/MMM-forecast-io

      If you install it, don’t forget to do a npm install in the module folder after cloning the module. The Readme has not yet been brought up to date.

      posted in Utilities
      lavolp3L
      lavolp3
    • RE: MMM-SystemStats (cpu temp/load, fre ram ...)

      @Lordy
      if you mean free RAM, try this out in your custom.css

      .MMM-SystemStats tr { 
        display: none; 
      }
      
      .MMM-SystemStats tr:nth-child(3n+0) { 
        display: table-row; 
      }
      

      For free disk space it would be

      .MMM-SystemStats tr { 
        display: none; 
      }
      
      .MMM-SystemStats tr:nth-child(5n+0) { 
        display: table-row; 
      }
      

      No guarantees!! I haven’t tried it!!

      posted in Utilities
      lavolp3L
      lavolp3
    • RE: MMM-SystemStats (cpu temp/load, fre ram ...)

      @Lordy try tr:nth-child(6n+1)

      You have 5 children in the table element, which are the 5 table rows.
      nth-child counts every “nth” children from 0.
      So if you have nth-children(3n+0) it takes the 3rd 6th 9th. Only the 3rd is there so voila.

      nth-children(6n+1) SHOULD count the 1st, 7th, 13th children, of these only the 1st is available. So, hopefully again, voila.

        getDom: function() {
          var self = this;
          var wrapper = document.createElement('table');
      
          var sysData = {
            cpuTemp: {
              text: 'CPU_TEMP',
              icon: 'fa-thermometer',
            },
            sysLoad: {
              text: 'SYS_LOAD',
              icon: 'fa-tachometer',
            },
            freeMem: {
              text: 'RAM_FREE',
              icon: 'fa-microchip',
            },
            upTime: {
              text: 'UPTIME',
              icon: 'fa-clock-o',
            },
            freeSpace: {
              text: 'DISK_FREE',
              icon: 'fa-hdd-o',
            },
          };
      
      posted in Utilities
      lavolp3L
      lavolp3
    • MMM-Buienalarm

      Description:

      For all you dutch and german people out there, I have created a module that is inspired by the app Buienalarm. It is based on the modules MMM-rainfc and MMM-rain-forecast. Thanks to @cirdan and @spoturdeal for their groundwork.
      I have created this since I wanted the rain forecast to be more prominent on the mirror.
      This module implements chart.js for a nicer graph and

      Screenshots:

      Download:

      [card:lavolp3/MMM-Buienalarm]

      Features:

      • uses Buienradar API, works in Netherlands and parts of Western Germany
      • line or bar graph possible
      • rain icons for light, medium, heavy rain as orientation help
      • flexible sizes, color

      Any ideas or corrections welcome and appreciated!


      Version 1.0

      Initial release

      posted in Utilities
      lavolp3L
      lavolp3
    • MMM-WeatherBoy

      Description:

      This is a Magic Mirror module for the kids!!
      Show them what to wear outside!
      It uses broadcasted weather data to show a boy wearing suitable clothes for going outside.

      Download:

      [card:lavolp3/MMM-WeatherBoy]

      Screenshots:

      example image

      (image upload seems still broken, please check github page for screenshots)

      Features:

      • can change colour of clothes regularly!

      Version 1.0.0

      • initial
      posted in Utilities weather module kids graphics
      lavolp3L
      lavolp3
    • RE: MMM-WeatherDependentClothes - Be properly dressed

      Funny idea @Frühstück.
      Have only found it just know from the new comments.
      Do you know my module MMM-WeatherBoy?
      Maybe both of these can profit from each other.
      Will have a closer look at yours soon!

      posted in Utilities
      lavolp3L
      lavolp3
    • RE: MMM-Buienalarm

      @MajorC Then you can just wait.
      I guess I’ll push the climacell change to the master branch later since there are already some modules out there that use Buienradar.

      posted in Utilities
      lavolp3L
      lavolp3
    • 1
    • 2
    • 9
    • 10
    • 11
    • 12
    • 13
    • 12 / 13