MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. matt216
    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 9
    • Posts 111
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Help with a couple CSS issues

      @sdetweil Thanks for the help.
      How do I reference the div in custom.css not the class?
      Adjusting the value in the element box above successfully adjusts the font, but this looks to adjust the ‘dimmed’ class.

      posted in Custom CSS
      M
      matt216
    • RE: Help with a couple CSS issues

      @sdetweil I wonder if I can ask for some help? I have MMM-ip module that I’d like the change the font size. Following your instructions with dev tools I can see:
      mmm-ip font.png

      So I have put in my custom.css:

      .MMM-ip .dimmed {
      font-size: 16px;
      }
      
      

      But it doesn’t seem to take effect. Any advice?
      Thanks in advance.
      Matt

      posted in Custom CSS
      M
      matt216
    • RE: Font size changes

      Wondering if I can ask advice. I have MMM-ip displaying the pi’s IP address, but it is tiny.
      I have added this to my custom.css:

      .MMM-ip	{
      	font-size: 35px;
      }
      
      

      and played around with different sizes, but the module doesn’t seem to change at all.

      Any ideas?

      Thanks

      posted in Troubleshooting
      M
      matt216
    • RE: MMM-MyCommute

      Initial test with @radokristof fork looks good. Doesn’t come up immedately at startTime, but soon after. Guess that has to do with the poll interval.

      posted in Transport
      M
      matt216
    • RE: MMM-MyCommute

      @lavolp3 already using @qistoph fork, yes. I can see on github there are issues raised around this. Also another fork by @radokristof which I’ll try.

      posted in Transport
      M
      matt216
    • RE: Mirror size

      @stalker401 Flush would be perfect but you can go bigger. You would probably notice a slight border effect. My mirror is considerably bigger than the screen and you can really notice the screen through the mirror. Upgrade due…

      posted in Hardware
      M
      matt216
    • RE: MMM-MyCommute

      @lavolp3

      {
                      module: 'MMM-MyCommute',
                      position: 'bottom_left',
                      header: 'Google Maps',
                      config: {
                              apiKey: 'xyz',
                              origin: 'xyz',
                              startTime: '05:00',
                              endTime: '20:00',
                              showUpdated: false,
                              destinations:
                                      [
                                      {
                                      destination: 'xyz',
                                      label: 'Erica commute',
                                      mode: 'driving'
                                      }
                                      ]
                              }
                      },
      
      

      Thanks

      posted in Transport
      M
      matt216
    • RE: MMM-MyCommute

      @lavolp3 thanks - the node_helper and multiple browsers makes sense now.
      No - no MMM-pages or module schedulers being used.
      I have my startTime option set to 05:00. I will try a cron job to pm2 restart mm at 05:15…

      posted in Transport
      M
      matt216
    • RE: MMM-MyCommute

      @sdetweil thanks for the help (again).
      I’m not sure I understand… it seems to take a second browser loading the page for the main mirror to display the module.
      As per the github page for the module, the startTime option is “The start time of the window during which this module wil be visible.” but this is not happening.
      endTime option works fine - the module disappears, but it does not reappear at startTime.
      Thanks

      posted in Transport
      M
      matt216
    • RE: Module Border Removal Issue

      @sdetweil said in Module Border Removal Issue:

      yes, and it really eliminates the ‘try this, nope, try this, nope… loop’

      Doesn’t it! Waiting for pm2 restart mm each time was driving me nuts!

      posted in Custom CSS
      M
      matt216
    • RE: Module Border Removal Issue

      Got it!

      I had border_bottom in the custom.css whereas I need border-bottom … classic typo.

      Interesting I need the line specifically calling out that class. The header address which sorts the rest of the page doesn’t seem to apply to the MMM-MyCommute module.

      Thanks for recommending browser dev tools - helped me identify the class.

      Matt

      posted in Custom CSS
      M
      matt216
    • RE: Module Border Removal Issue

      Thanks for your help.
      For more context there are two different commute/traffic modules (I’m testing out the accuracy of the two side-by-side) - MMM-MyCommute and then MMM-Traffic.

      I have set border-bottom: none addressing header to address the page as a whole, yes. I do not want any of the modules to display the separating line between them.

      The module MMM-MyCommute is the one with the border-bottom showing. Thanks for the dev tools tip - I can see the page loading:

      .MMM-MyCommute .row {
        position: relative;
        padding: 1px;
        border-bottom: solid 1px #222;
        min-height: 35px;
        min-width: 390px;
      }
      

      However if I put the following in custom.css it doesn’t change anything…

      .MMM-MyCommute .row     {
              border_bottom: 0;
      }
      
      

      Thanks again

      posted in Custom CSS
      M
      matt216
    • Module Border Removal Issue

      Hi.
      I have used custom.css to remove the border lines between modules by inserting:

      header  {
              border-bottom: none;
      }
      
      

      However just one module is still showing it - the MMM-MyCommute module, bottom left of screen. Can anyone advise how I might remove?
      Mirror and custom.css below.

      mirror-css.png

      Thanks

      posted in Custom CSS
      M
      matt216
    • RE: MMM-MyCommute

      Additional question - the startTime option doesn’t seem to be working correctly for me. The module doesn’t display in the morning on the pi/mirror, even after the specified startTime. Weirdly, when I browse to the mirror from my laptop or phone (http://ip:8080) that seems to trigger the module to display on the pi.
      Any ideas there?!

      posted in Transport
      M
      matt216
    • RE: Use the Raspberry PI for MagicMirror and as NAS (OpenMediaVault) simultaneously

      It is definitely possible to run multiple services on the same pi, as long as the pi is powerful enough.
      You mentioned the NAS software has its own .iso - if you used that you’d then have to install magicmirror on top. You may come in to some conflicts there and have to tweak, but definitely worth a shot.
      Or if you start with your magicmirror install it is fairly simple to expose a shared folder to the network and have the pi act as a NAS also.
      Good luck!

      posted in General Discussion
      M
      matt216
    • RE: MMM-MyCommute

      Hi all.
      Wondering if there’s a way to hide the arrival time? Can’t see an option in the config.
      Thanks

      posted in Transport
      M
      matt216
    • RE: MyCommute 'Loading...' assistance please

      @sdetweil you are correct, thank you!

      posted in Troubleshooting
      M
      matt216
    • MyCommute 'Loading...' assistance please

      Hello,
      Just setting up the MMM-MyCommute module. The config looks ok, but the mirror just displays “Loading…”.
      Using firefox dev tools I can see the following related:

      • 404 on GET http://192.168.0.90:8080/modules/MMM-MyCommute/node_modules/moment-duration-format/lib/moment-duration-format.js

      • Error on loading script: modules/MMM-MyCommute/node_modules/moment-duration-format/lib/moment-duration-format.js

      • The resource from “http://192.168.0.90:8080/modules/MMM-MyCommute/node_modules/moment-duration-format/lib/moment-duration-format.js” was blocked due to MIME type (“text/html”) mismatch (X-Content-Type-Options: nosniff).

      • Uncaught (in promise) TypeError: moment.duration(…).format is not a function

      The API requests do appear to be coming through to the Google Cloud API.

      Any assistance much appreciated. The error messages point to the module code, not my config. I can’t find anything when I grep ‘commute’ or ‘moment’ in the pm2 logs.

      Thanks

      posted in Troubleshooting
      M
      matt216
    • Fing module

      I noticed today in my Fing app, under Fingbox settings, that there is an option to enable ‘Local API’ and query the fingbox directly on your local network.
      Would hopefully enable a load of network discovery/protection stats.

      posted in Requests
      M
      matt216
    • RE: MMM-Bank to display your bank account balance

      Hi. Love the idea. Struggling with Plaid, though. Totally new to it. Are you able to point me in the right direction to linking Plaid with my bank and generating the access token?
      Thanks.

      posted in Showcase
      M
      matt216
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 5 / 6