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

    Miller

    @Miller

    1
    Reputation
    83
    Profile views
    15
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Miller Unfollow Follow

    Best posts made by Miller

    • MMM-Netatmo updated

      Hi all,
      I started with my first MagicMirror, and wasn’t completely happy with the default MMM-Netatmo weather module, so I modified it a bit.

      I don’t have a lot of experience with webdesign, but it fits my purposes.
      Maybe someone else will find my project usefull as well.

      Preview Module

      [card:RaymondMolenaar/MMM-Netatmo]

      Greetings Raymond Molenaar

      posted in Utilities
      M
      Miller

    Latest posts made by Miller

    • RE: MMM-Netatmo updated

      I cannot take credit for building the module, I only redesigned it a bit.

      As for the Air Quality, took me some figuring out as well.

      However, as a location, put the string in behind city, so in your case it would be:

      location: "austria/laschoberstrasse--ostlich-kreisverkehr-ruster-strasse",
      
      posted in Utilities
      M
      Miller
    • RE: MMM-Netatmo updated

      @zdenek
      The AQI font class is inherited from the default .small class of MM.

      To override this, add the following to the CSS

      .MMM-netatmo .displayAQI .small {
        font-size: 10px;
        line-height: 15px;
      }
      

      To override all the .small classes in MMM-Netatmo

      .MMM-netatmo .small {
        font-size: 10px;
        line-height: 15px;
      }
      

      The same goes for the Temperature, this Uses the default .large font class
      to override add:

      .MMM-netatmo .large {
        font-size: 40px;
      }
      

      The .x-medium is only applied to .secondary.displayWindAngle.WindAgle
      The other icons is the normal .medium which comes from MM

      So you can override

      .x-medium {
      
        font-size:100%;
      }
      

      and

      .MMM-netatmo .medium {
        font-size: 70%;
      }
      
      posted in Utilities
      M
      Miller
    • RE: MMM-Netatmo updated

      @frogywill To show Fahrenheit, change your default settings of MagicMirror units to “imperial”

      Or set units: “imperial” in MMM-Netatmo config

      posted in Utilities
      M
      Miller
    • RE: MMM-Netatmo updated

      Here you can find many available modules.
      For the thermostat there is this Module

      For me that one is not suitable, because it is only for the thermostat, not for the valves.
      Since I didn’t find a module for the valves, I will maybe try to make it myself, but will take some time

      posted in Utilities
      M
      Miller
    • RE: MMM-Netatmo updated

      @zdenek Thank you for your comments.
      I’ll see if i can improve it later

      posted in Utilities
      M
      Miller
    • RE: Alternative for request package/library

      @Sean thank you for your input

      posted in Development
      M
      Miller
    • RE: Alternative for request package/library

      @sdetweil Thank you for your answer.

      I’ve seen Axios gets many mentions indeed, also got seems to have something going
      https://github.com/request/request/issues/3143

      I was hoping, maybe someone else had encountered a similar dilemma already, and would gladly follow the path the majority of developers would take. Makes little sense if every new/modified module uses another package I would think.

      Maybe I will just start with request anyway (many examples) or give Axios a try.

      posted in Development
      M
      Miller
    • Alternative for request package/library

      Hi all,
      I was thinking of developing a new module which would require some OAuth calls to a RESTfull API.
      I see most module so far use the “request” package for this.
      Since the request package/library is deprecated, it would make no sense to start a new module with this package, only to have to update it within a few months.

      What would be the best alternative to request, to get started with a new module?

      Thx in advance.

      posted in Development
      M
      Miller
    • RE: MMM-Netatmo updated

      @zdenek I updated the module, now it’s possible to have your Netatmo-Modules (Rooms) in one row.
      For this set “horizontal” to true on your config.js

      This will only display rooms on one row as long as there is allowed space from MM-Module.
      The rooms that don’t fit, will continue on the next row.

      However, you can “Force” everything to stay on one row.
      Then set “horizontalOverflow” to true.
      This forces everything to stay on one row, but of course with the chance it will overflow your other Modules on the mirror.

      Updated Images are in included in my Github-repository (look at the bottom of the Reame.md)

      posted in Utilities
      M
      Miller
    • RE: MMM-Netatmo updated

      @zdenek Not in this version at the moment

      posted in Utilities
      M
      Miller