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
    • 1 / 1