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

    Posts

    Recent Best Controversial
    • MMM-RAIN-MAP (new: version 2.x)

      This is a rain radar map based on OpenStreetMap combined with Rainviewer.com weather data.
      Download and instructions on GitHub.

      Feedback welcome.

      Features

      • Displays Rainviewer.com radar layers on OpenStreetMap
      • Every 10 minutes a new weather snapshot is published
      • The snapshots of the last 2 hours are available, which show the weather events of the past
      • Additionally 3 layers are displayed as forecast of the next 30 minutes
      • Option to place multiple markers on map
      • Option for multiple, alternating map positions
      • Option to only show in current rainy weather conditions. Works only together with weather or MMM-OpenWeatherForecast as dependency.
      • (Experimental) Option to hide other modules in case of rain in favor to get more space.

      Screenshot
      alt text

      Installation and usage instructions are in the project’s README.md.

      Support
      If you like this module and want to thank, please buy me a beer.

      Buy Me A Beer

      posted in Utilities
      JalibuJ
      Jalibu
    • MMM-BoschSmartHome

      Hi community,

      Here is my MMM-BoschSmartHome module. It is a client interface for the Bosch Smart Home System.
      Download and instructions on GitHub.

      Note: This module is a private and inofficial project without any relation to Robert Bosch Smart Home GmbH. I do not give any warranty, nor am I responsible for any damage.

      Features

      • Support for multiple rooms
      • Window-/Door Contacts
      • Room Climate Controls
      • Thermostats
      • Twinguards
      • Visualization of Temperature, Humidity and Purity
      • Bosch Home Connect Dishwashers (experimental!)
      • Philips Hue Bridge
      • Languages: English, German

      Screenshots

      Visualization with bars

      1ac5e3c1-63f7-4bc5-8300-c2805a2fd9b5-image.png

      Visualization with donuts

      6faa185c-9898-4951-be72-c9c64e77e4f9-image.png

      Thank you

      To all testers, their and your feedback.

      Support
      If you like this module and want to thank, please buy me a beer.

      Buy Me A Beer

      posted in Utilities
      JalibuJ
      Jalibu
    • MMM-NINA

      This is a client implementation for the German emergency and disaster warning system “NINA”.

      NINA Warnapp
      Mit der Notfall-Informations- und Nachrichten-App des Bundes, kurz Warn-App NINA, erhalten Sie wichtige Warnmeldungen des Bevölkerungsschutzes für unterschiedliche Gefahrenlagen wie zum Beispiel Gefahrstoffausbreitung oder einen Großbrand. Wetterwarnungen des Deutschen Wetterdienstes und Hochwasserinformationen der zuständigen Stellen der Bundesländer sind ebenfalls in die Warn-App integriert.
      Quelle: www.bbk.bund.de

      d0d98d02-74ba-449d-ba74-bfd280e44d29-image.png

      7ba390e3-ede1-4947-be9e-7129eb3bc876-image.png

      Weitere Informationen und eine Anleitung zum Download auf Github.
      Feedback erwünscht.

      Support
      Wenn euch meine Arbeit gefällt und ihr mich unterstützen möchtet, dann freue ich mich über einen Kaffee von euch.
      Buy Me A Beer

      posted in Utilities
      JalibuJ
      Jalibu
    • [MMM-JaST] Just another Stock Ticker (new: version 2.x)

      Hi community,
      please feel free to check out my stock ticker ;-)

      Main Features

      • Uses Yahoo Finance API to collect current
        • stock values
        • indexes
        • cryptocurrencies
      • No API Key required
      • Multiple display modes
        • Static
        • Vertical scroll
        • Horizontal scroll
        • Table
      • Share Portfolio value and growth summary
      • Very customizable
      • Easy to use

      Download and instructions on Github.

      Feedback welcome.

      Display Modes

      Vertical

      Horizontal

      Horizontal

      Vertical

      Table

      Vertical

      Static

      Vertical

      Support

      I put a lot of time and effort into the creation and maintenance for this module and I’m glad so many people like it.
      If you also like this module and want to thank, please rate this repository with a star or donate a small amount that is worth it to you.

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: Automatic checking of all MagicMirror² modules

      I think that such checks can be valuable. perhaps not the ones which are implemented yet, but this can still be a good starting point for other checks.
      but it will be challenging to automate some of the proposed checks.

      posted in Development
      JalibuJ
      Jalibu
    • RE: MMM-RAIN-MAP (new: version 2.x)

      @ph1tch haha, the case of no rain for a long time is so hard to test in Germany this year…

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: Automatic checking of all MagicMirror² modules

      hmm… if this is the cornerstone for a proper MagicMirror Appstore, then I should consider renaming all my modules to start with the letter “A” to attract more attention on the landing page :-D

      posted in Development
      JalibuJ
      Jalibu
    • RE: [MMM-JaST] Just another Stock Ticker (new: version 2.x)

      Some may have noticed, that this module stopped working in the past days due to a change in Yahoo’s finance API.
      Today, I published an update for MMM-Jast which should fix that.

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: MMM-Rain-Radar

      @lhops because MMM-Rain-Radar is no longer maintened, I created https://github.com/jalibu/MMM-RAIN-MAP which uses the same data source but with even more features and forecast.

      posted in Show your Mirror
      JalibuJ
      Jalibu
    • Module Development in TypeScript

      Hello developers,

      some time ago I switched all my modules to TypeScript (feel free to check out MMM-Jast as a reference implementations).
      Especially for more complex modules, TypeScript brings huge advantages from my point of view.
      Since the MagicMirror platform doesn’t provide its own TypeDefinitions, I made them available via the DefinitelyTyped library.
      For interested developers I also plan to provide some kind of TypeScript template module soon.

      .
      ├── src
      │   └── backend
      │       ├── Backend.ts
      │       ├── BackendUtils.ts
      │       └── ...
      │   └── frontend
      │       ├── Frontend.ts
      │       ├── FrontendUtils.ts
      │       └── ...
      │   └── types
      │       ├── ABC.ts
      │       └── ...
      └── templates
      │       ├── main.njk
      │       └── ...
      └── translations
      │       ├── de.json
      │       ├── en.json
      │       └── ...
      └── MMM-XYZ.js (generated)
      └── node_helper.js (generated)
      └── MMM-XYZ.css
      └── tsconfig.json
      └── rollup.config.json
      └── README.md
      └── package.json
      

      Question: Are there any other developers among you who are interested in joining my “TypeScript” initiative? A little support from another developer in maintaining the type definitions would be helpful.

      posted in Development
      JalibuJ
      Jalibu
    • 1 / 1