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

    Posts

    Recent Best Controversial
    • RE: Custom size of modules

      in folder css you find a file named custom.css with this content:

      /*****************************************************
       * Magic Mirror                                      *
       * Custom CSS                                        *
       *                                                   *
       * By Michael Teeuw http://michaelteeuw.nl           *
       * MIT Licensed.                                     *
       *                                                   *
       * Add any custom CSS below.                         *
       * Changes to this files will be ignored by GIT. *
       *****************************************************/
      
       body {
       	
       }
      
      

      There you can add anything you want to. In your example you could add this below the current content, not inside the body part!

      .MMM-Fuel {
      width: 200px;
      }
      

      Play around with the numbers to adjust to your layout

      posted in Custom CSS
      yawnsY
      yawns
    • RE: Changing icons of the modules Current Weather and Weather Forecast

      You are missing a comma in line appid for currentweather module

      				locationID: "xxx",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "xxx",
      				iconTable: {
      
      posted in Development
      yawnsY
      yawns
    • RE: MMM-PublicTransportBerlin - Public transport for Berlin and Brandenburg (departures)

      @Dicous
      Did you install (git clone) the module into the right folder ~/MagicMirror/modules/ ? Did you also run npm install in the new subfolder ~/MagicMirror/modules/MMM-PublicTransportBerlin ?

      posted in Transport
      yawnsY
      yawns
    • RE: Do you have a "moment"

      Just guessing:
      With the latest magic mirror update we also received an update for moment.js which is used to do time and date calculations and formatting.
      Maybe the latest moment.js marked some function as deprecated and this function is used inside MMM-WunderGround

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Compliments Font (Crying Uncle)

      this should work

      .compliments .xlarge {
        font-family: Verdana;
        font-weight: 10;
      }
      
      posted in Custom CSS
      yawnsY
      yawns
    • RE: Mobile app (bachelor thesis)

      @strawberry-3-141
      This one?

      Hey Mate,

      thank you for filling out my survey, I really appreciate that.

      Now it’s time for the first prototype.

      Features:

      • Pairing: To pair your phone with your mirror, you have to scan the qr-code which will appear for a minute on the mirror.
      • Pull-to-Refresh: Once you paired your phone it’s time to get data in modules(available, installed) and region(this will override all changes you have done and not synced to the mirror yet).
      • Edit Modules: You can remove, reorder and edit modules. After you’re done it’s time to sync your changes to the mirror.
      • Sync: This will override your config.js file on the mirror. You have to restart your mirror manually.

      Explanation of types:

      • Object: {}
      • Array: []
      • Integer: Numbers like 1, 3, 17, etc.
      • Float: Numbers like 1.25, 3.45, etc.
      • String: “This is just a text.”
      • Boolean: true, false

      Installation:

      • First you have to install the module from here:
        https://github.com/fewieden/MMM-Mobile

      • Then install the app on your phone.

      • Finally restart your mirror.

      If you get in trouble or found a bug please submit an issue on github(don’t forget to name your phone os), so everyone can benefit from it. But it’s also possible to send me an email in english or german.

      Kind Regards,

      Felix

      posted in Development
      yawnsY
      yawns
    • RE: MMM-PublicTransportBerlin - Public transport for Berlin and Brandenburg (departures)

      No, you did not. You are in ~/MagicMirror/modules/default and not ~/MagicMirror/modules. Modules in default won’t be executed, the default area is “protected”.

      posted in Transport
      yawnsY
      yawns
    • RE: pt VS px

      pt is point
      px is pixel

      For a full explanation see here: http://kyleschaeffer.com/development/css-font-size-em-vs-px-vs-pt-vs/

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Help needed simple API based module

      Hi, first spotted error:

      Module.register("ISS-current-location",{
      

      This should be

      Module.register("MMM-ISS-current-location",{
      

      Otherwise your module won’t be called.

      posted in Development
      yawnsY
      yawns
    • 1 / 1