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

    Posts

    Recent Best Controversial
    • RE: Calendar overlapping problem

      @StrikeBack83 you didn’t put the config options in the right place, try:

      {
        module: "calendar",
        header: "Österreichische Feiertage",
        position: "top_left",
        config: {
          timeFormat: "absolute",
          maxTitleLength: 17,
          maximumNumberOfDays: 7,
          dateFormat: "DD MMM",
          fullDayEventDateFormat: "DD MMM",
          urgency: 0,
          getRelative: 0,
          calendars: [
            {
              //symbol: "calendar-check-o ",
              url: "https://www.ferienwiki.at/exports/feiertage/2017/at/wien"
            }
          ]
        }
      },
      

      Furthermore you can get mor space out of your monitor, by applying the following css rule in custom.css

      body {
        margin: 10px;
        height: calc(100% - 20px);
        width: calc(100% - 20px);
      }
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Fuel

      Now also supporting fuel prices in the USA. Take a look at https://github.com/cowboysdude/MMM-Gas for different style of the same information.

      2.3.0

      MagicMirror² version >= 2.15.0 required.

      Added

      • Provider: autoblog
      • Config option: showBrand
      • Integrated MagicMirror logger on server side
      • Dependency: node-html-parser
      • Config option excludeStationIds to exclude gas stations from radius (Tankerkönig only)

      Changed

      • Updated Github config files
      • Updated dependencies

      Removed

      • Dependency: fs-extra
      • Dependency: geolib

      Link to module https://github.com/fewieden/MMM-Fuel

      autoblog.png

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      @darkeagl105 can you please test the newest version if it fixes you problem?

      Changelog:
      exchanged flexbox with table to support smaller screens
      added i18n for english and german
      replaced icons with font-awesome

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: MagicMirror in Slack ... we'll see you there.

      @roramirez is there a specific reason why this will be devs only? I think discussions about new features etc. is also possible in public async communication, especially in an open source project. In compare bugs and help is more like an urgent thingy and most of the time synchronous communication is needed, like the idea of having a shoutbox plugin on the forum. Slack also provides private channels, so why don’t open the slack for everyone with some private channels where only certain people get access to. Also where is the border to let people in or not. In my oppinion there are severable people who did patches or own modules in the past, but it was more than a copy paste from someone else, than real coding. Not to offend any body, but makes no sense to have people in discussions who have a leak on knowledge what they just actually did, if we will have just selected people in there.

      posted in MagicMirror
      strawberry 3.141S
      strawberry 3.141
    • RE: Calendar shows no events

      @lum3n Can you try to use a public online ics file and see if it get parsed correctly? If so download it and make it available through your local server, then try to parse it locally. After that you should know if it is your ics file or there is some issue with your environment somewhere.

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      @ooom416354 if you can provide me a free api i will create those modules or you explain me in detail what you want to have displayed per personal message and i do screen scraping

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: DailyXKCD

      for inverting the colours you can insert the css rule filter: invert(100%);

      posted in Entertainment
      strawberry 3.141S
      strawberry 3.141
    • RE: Old Modules from MM1 transfer to MM2

      there is already a button module for mm2
      https://forum.magicmirror.builders/topic/95/button

      for voice control there are several people in this forum working on
      https://forum.magicmirror.builders/topic/402/to-do-modules
      https://forum.magicmirror.builders/topic/54/voice-motion-control/
      https://forum.magicmirror.builders/topic/222/voice-control

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: assign a symbol to a module

      @Plati do you know how regular expression works?makes no sense to remove the asterisks symbol, you need the asterisk because it is in the string otherwise you dont detect the value!

      problem is that the asterisk has a special function in the regular expression context so you need to escape it like this var temperatureRegExp = /Temperature = (.*?) \*C/ig;

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Github Tutorial

      @mortenbirkelund

      1. fork the repository on github by clicking on the fork button on the repository page
      2. clone your new created repository
      3. switch to develop branch git checkout develop
      4. make your changes
      5. stage your changed files git add file_a file_b ...
      6. commit your changes git commit -m "This is what I have changed"
      7. push your local changes to github git push
      8. create a pull request on your repository page to merge your changes to the main project
      posted in Feature Requests
      strawberry 3.141S
      strawberry 3.141
    • RE: proble with inserting youtube at evenncohen Smart Mirror

      @Barbarian this forum is only about the smart mirror called magicmirror by michael teeuw, you’re probably better of asking in the github repo of this specific smart mirror to get help

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      @daveyg_71 well when you want to have the color the right way to go is this colored: true

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Debugging

      @BenRoe quote from the readme The Magic Mirror contains a convenience wrapper for logging. Currently, this logger is a simple proxy to the original console.log methods. But it might get additional features in the future. The Loggers is currently only available in the core module file (not in the node_helper). so everything you have experinced is as it should be

      instead of logging in the node_helper directly you could send the string, objects, etc. to your module and use the logger there to view it in the browsers console

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: remoteFile in compliments module

      @skr

      cd ~/MagicMirror
      git fetch
      git checkout develop
      npm install
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: PIR Motion sensor

      @richardh151 open a terminal go into your modules directory mmm-pir-sensor and run npm install

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: NFL Score Module

      @TheHyp3 thanks for reporting, I made a hotfix for it. I’m not sure how the data will look like when we are in the post season, so it could happen again.

      your config has some syntax errors. you shouldn’t put a boolean into quotes. in javascript it will allways lead to true, so if you would have done colored: 'false' it would have been colored as well.

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Tutorials or Overview for Module Dev?

      @yawns I create only a node_helper if I need to use a npm dependency

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: How to set Font in Alarm Clock

      @morozgrafix thats correct, another possibility could be !important

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Daytime vs Night Time Mirror

      @carltonb small hint, setup the clock module two times in the config and toggle between them with mmm-modulescheduler.

      add a class to both entrys in the config like day and night.

      then in the custom css you can apply different rules based on the day and night class

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-OlympicGames

      @doubleT I just uploaded a new version with a different data source, pls keep in mind that the new data source works with 3 letter country codes in case you want to use the highlight option

      [card:fewieden/MMM-OlympicGames]

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 26
    • 27
    • 4 / 27