MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. strawberry 3.141
    3. Posts
    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: MMM-Fuel

      @RIKKO14 currently this module only supports Germany, Austria and NSW in Australia.

      If you find an API for data in France the module can be expanded. A guide can be found here.

      @eniac there are a couple of issues.

      1. You have the wrong format for the stationIds. It should be stationIds: ["9ac83212-c785-476f-9862-34a4b04f6320"].
      2. I suggest not going lower than the default update interval of 15min. You currently fetch data every minute, which can lead to a suspension of your API key as other users experienced before. Also see limitations here https://creativecommons.tankerkoenig.de/terms
      3. The fuel type should be lowercase
      4. The fuel station id you tried is inside the default search radius. There seems to be a bug currently, where we still make a request even if the list is empty. I suggest to either disable the radius search or remove the station ids.
      {
        module: "MMM-Fuel",
        position: "top_right",
        config: {
          api_key: "XXXXXXXXXXXX",
          lat: 50.873798,
          lng: 8.023410,
          types: ["e5"],
          stationIds: ["9ac83212-c785-476f-9862-34a4b04f6320"],
          radius: 0
        }
      },
      
      {
        module: "MMM-Fuel",
        position: "top_right",
        config: {
          api_key: "XXXXXXXXXXXX",
          lat: 50.873798,
          lng: 8.023410,
          types: ["e5"]
        }
      },
      

      station.png radius.png

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Fuel

      Version 2.2.0

      Thanks to @TheDuffman85 for his contribution to this release. This version allows either to search by radius, specific station, or a combination of those two for provider Tankerkönig (Germany).

      Added

      • Config option stationIds to check prices of specific gas stations (Tankerkönig only)
      • Github actions

      Changed

      • 3rd decimal is now superscripted
      • Price and distance values are now localized based on global config option locale.

      Removed

      • Travis-CI integration

      fuel.png

      https://github.com/fewieden/MMM-Fuel

      [card: fewieden/MMM-Fuel]

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

      2.2.1

      Fixed

      • Nunjuck template was rendering one team less than specified in config

      https://github.com/fewieden/MMM-soccer

      [card:fewieden/MMM-soccer]

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: Integrating an npm module that uses import

      @lavolp3 which version of nodejs are you running? import is a feature of es6 modules. You can try to enable it like this https://stackoverflow.com/a/45854500

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-NHL

      2.1.0

      Fixed

      • Date queries are now set based on timezone America/Toronto.

      Added

      • Config option rollOver

      [card:fewieden/MMM-NHL]

      https://github.com/fewieden/MMM-NHL

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • MMM-NHL

      I created an initial version of this module 3 years ago but it never had its own showcase thread in the forum.

      I just rewrote the whole module with the big help of https://github.com/dannoh

      alt text alt text alt text

      [2.0.0]

      Added

      • Nunjuck templates
      • French translations thanks to matlem037
      • Dependency node-fetch
      • Config option daysInPast
      • Config option daysAhead
      • Config option liveReloadInterval thanks to dannoh.
      • Config option showNames thanks to dannoh.
      • Config option showLogos thanks to dannoh.
      • Support for game status postponed thanks to dannoh.
      • Github actions (linting and changelog enforcer)
      • JSDoc documentation

      Changed

      • Switched API for data feed.
      • Display logos from remote.
      • Retrieve team list from API.
      • ESLint recommended instead of airbnb ruleset.

      Removed

      • Config option format, instead rendering information based on locale.
      • Travis integration
      • Dependency moment-timezone
      • Dependency request
      • Local team logos

      Make sure you install the new dependencies as described in the Readme file.

      https://github.com/fewieden/MMM-NHL

      [card:fewieden/MMM-NHL]

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-AlarmClock

      @innovation with the following config it stops after 5 seconds.

      {
        module: "MMM-AlarmClock",
        position: "top_left",
        config: {
          alarms: [
            {
              time: "16:15",
              days: [0,1,2,3,4,5,6],
              title: "Test",
              message: "some alarm message"
            }
          ],
          timer: 5000
        }
      },
      

      If you add the following to the custom.css file it will hide the module from the screen, but still, show the alert:

      .MMM-AlarmClock {
        display: none;
      }
      
      posted in Utilities
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Modal

      With MMM-soccer another module has now integrated the modals.

      Standings modal

      See the full list at https://github.com/fewieden/MMM-Modal/wiki/Depending-Modules

      posted in System
      strawberry 3.141S
      strawberry 3.141
    • RE: How make a touch popup frame ?

      @KamiSchami you can integrate https://github.com/fewieden/MMM-Modal for your module

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

      @Egnos the module doesn’t make use of the site native-stats.org. You need to specify the api key in the config such as api_key: 'YOUR_API_KEY',. https://www.football-data.org/client/register

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

      @Egnos seeing your previous post with the config, your league probably requires a free API key.

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

      @Egnos Requires version >= 2.14 of MagicMirror!

      [02:57:33.259] [LOG] Starting MagicMirror: v2.10.1

      Your mirror is not up to date

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

      Version 2.1.0

      Requires version >= 2.14 of MagicMirror!

      Added

      • Integrated MMM-Modal

      Changed

      • Using remote logos
      • Preview pictures

      Fixed

      • Fade effect
      • Focus_on in modal highlights correct team
      • Help modal shows correct voice commands

      Removed

      • Logo downloader
      • Doclet integration


      https://github.com/fewieden/MMM-soccer

      [card:fewieden/MMM-soccer]

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Modal

      With MMM-ip another module has now integrated the modals. See the full list at https://github.com/fewieden/MMM-Modal/wiki/Depending-Modules

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

      Version 2.0.1

      Added

      • French translations (Thanks to https://github.com/laventin85)

      Changed

      • Readme config example
      • Github config files

      https://github.com/fewieden/MMM-soccer

      [card:fewieden/MMM-soccer]

      posted in Sport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-ip

      Version 2.0.0

      Added

      • Nunjuck templates
      • Integrated MMM-Modal for modal handling
      • Documentation

      Fixed

      • MMM-voice mode in notificationReceived (Thanks to https://github.com/MillerMedia)

      Changed

      • Config files

      Removed

      • Config options (voice, showFamily, showType, and startHidden). Check out the readme for replacements.
      • Internal modal handling (help, interfaces)
      • Stylelint and CSS files

      https://github.com/fewieden/MMM-ip

      [card:fewieden/MMM-ip]

      posted in System
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-WienerLinien

      Version 2.0.1

      Fixed

      • Sorting of departure times https://github.com/fewieden/MMM-WienerLinien/issues/16

      https://github.com/fewieden/MMM-WienerLinien

      [card:fewieden/MMM-WienerLinien]

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-Fuel

      Version 2.1.2

      Added

      • Config option showDistance https://github.com/fewieden/MMM-Fuel/pull/49
      • Missing jsdoc documentation

      Changed

      • Dependency update

      Fixed

      • Deinit map had a hardcoded index for markers.

      https://github.com/fewieden/MMM-Fuel

      [card:fewieden/MMM-Fuel]

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • RE: Default Newsfeed: Fullscreen News Article in MMM-Modal instead of iFrame

      @RaspiManu I’m quite busy to help you out much here. But maybe it helps you to check out https://github.com/fewieden/MMM-Modal/issues/6 where @skuethe implemented MMM-Modal with MMM-Touch and MMM-WiFiPassword

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

      @Pielo the documentation states that you need to provide an integer of how many character you want to see, the value false is just to deactivate the behavior.

      Option          Default Description
      shortenText	false	Integer of characters to be shown for name and address. Default shows all.
      

      If you do shortenText: 5, then it will show 5 characters and shortenText: 10 will show 10 and so on

      posted in Transport
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 84
    • 85
    • 4 / 85