MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. ryck
    R
    • Profile
    • Following 0
    • Followers 3
    • Topics 7
    • Posts 47
    • Best 14
    • Controversial 0
    • Groups 1

    ryck

    @ryck

    Module Developer

    39
    Reputation
    2217
    Profile views
    47
    Posts
    3
    Followers
    0
    Following
    Joined Last Online
    Website ryck.me Location London, UK Age 43

    ryck Unfollow Follow
    Module Developer

    Best posts made by ryck

    • 22'' Display + 40cmx50cm IKEA Frame + PIR Sensor

      Frame
      Just two IKEA RIBBA glued back to back. You can use the included glass to use some film on it and the back to “close” the back and hang the frame.
      I tried to do my own frame, but I suck at that…

      Modules

      • clock
      • currentweather
      • MMM-Tube-Status
      • weatherforecast
      • MMM-TFL-Arrivals
      • MMM-UKNationalRail
      • compliments (with a custom compliments.json file)

      CSS
      Just some custom CSS to make everything a little bigger and some transform: scale(1.5)
      to make the clock & weather modules bigger

      PIR Sensor
      The PIR sensor is “hidden” in the right bottom corner. Not the best place, but is so useful than I can really complain. When the screen turns on when you are near is when this MagicMirror feels like magic 🙂
      I got this one and I am using MagicMirror-Display-Controller to control it.

      posted in Show your Mirror
      R
      ryck
    • MMM-AQI

      Description

      I was looking for a nice and simple module to display the air quality index (AQI), but all the modules I found were not really updated, or not using an API, or you couldn’t have several instances of it, or were not international, etc, so… I created my own.

      This module gets the Air Quality Index (AQI) using the World Air Quality Index project API.

      Screenshots:

      MMM-AQI

      Download:

      posted in Health
      R
      ryck
    • MMM-Humanize-Duration

      Description

      I just had a baby, and I wanted a geeky way to keep track of his exact age, so…
      You can also use it to track any other past (or future) events!
      Underneath, it’s just a simple wrapper around HumanizeDuration.js

      Screenshots:

      MMM-Humanize-Duration

      Download:

      posted in Utilities
      R
      ryck
    • Need more compliments? compliments.json

      I always like to expand the default compliments a little bit (using an external json file), so I guess I can share it as well:

      https://gist.github.com/ryck/e28a69665b8839f6e9a7acd6b4acc97d

      posted in Fun & Games
      R
      ryck
    • RE: 22'' Display + 40cmx50cm IKEA Frame + PIR Sensor

      @Sean Well, to be honest, my wife deserves all the credit: I was desperate after 2 weeks of trying to do my own frame, including butchering 3 RiBBAs (just to get the glass) and my wife just said: hey, you already have two unused frames, why you just don’t glue them back to back? MIND BLOWN

      posted in Show your Mirror
      R
      ryck
    • MMM-DHT-Sensor - Get temperature & humidity values from a DHT sensor

      Description:

      This week I got a DHT22 because I saw several MMM around here to get the temp/humidity, but none of them worked for me, so… I created my own.

      The module just reads the temperature / humidity values from the sensor and displays them in a MMM module.

      Screenshots:

      MMM-DHT-Sensor

      Download:

      MMM-DHT-Sensor

      posted in Utilities
      R
      ryck
    • RE: Worldclock & Currency

      @yawns You can always use https://exchangeratesapi.io/ if you don’t want to make people get an apiKey…

      posted in Requests
      R
      ryck
    • RE: Need more compliments? compliments.json

      @dmd Just add remoteFile: “compliments.json” to the compliments module configuration

      posted in Fun & Games
      R
      ryck
    • RE: MMM-DHT-Sensor - Get temperature & humidity values from a DHT sensor

      Version 1.1.0

      • Use config.units to set the sensor temperature units
      • Implements INDOOR_TEMPERATURE and INDOOR_HUMIDITY notifications so you can use showIndoorTemperature
        indoor temperature
      posted in Utilities
      R
      ryck
    • RE: 22'' Display + 40cmx50cm IKEA Frame + PIR Sensor

      @cornusandu I don’t think a video will help you, you just need to follow the instructions here: https://github.com/deg0nz/MagicMirror-Display-Controller

      Make sure you you set the path and the the pin variable to the correct values and that’s it.

      posted in Show your Mirror
      R
      ryck

    Latest posts made by ryck

    • RE: Need more compliments? compliments.json

      @amanzimdwini I always use it locally, github is just a place for sharing it, so you are doing the right thing. You can always fork it to keep your personal compliments safe, but that’s up to you.

      To use it, copy the file to somewhere (ie, in the compliments module folder: modules/default/compliments/compliments.js) and use it in your config like this:

          {
            module: "compliments",
            position: "bottom_bar",
            disabled: false,
            config: {
              remoteFile: "compliments.json",
              updateInterval: 10000,
              classes: "thin bright medium",
              fadeSpeed: 2000,
            },
          },
      

      Good luck!

      posted in Fun & Games
      R
      ryck
    • MMM-Year-Progress

      Description

      This is just a small module that tracks the progress of the year / month / week.

      It’s based on all this existing websites / apps, so thanks to them for the inspiration:

      @year_progress
      year_progress
      Progress Bar

      Screenshots:

      MMM-Year-Progress

      Download:

      posted in Utilities
      R
      ryck
    • RE: 22'' Display + 40cmx50cm IKEA Frame + PIR Sensor

      @poopyurinal Just " No more nails" from unibond, but any wood glue will work. I don’t recommend superglue though…

      posted in Show your Mirror
      R
      ryck
    • RE: Worldclock & Currency

      @yawns You can always use https://exchangeratesapi.io/ if you don’t want to make people get an apiKey…

      posted in Requests
      R
      ryck
    • RE: MMM-Humanize-Duration

      @andurii That’s a great idea, I’ll do that!

      posted in Utilities
      R
      ryck
    • RE: MMM-Humanize-Duration

      @andurii Thanks!

      Using another language is really easy (thanks to HumanizeDuration.js): Just pass language as an option, like:

      		options: {
      			units: ["y", "mo", "w", "d", "h"],
      			round: true,
      			language: 'de',
      			conjunction: ' and ',
      			serialComma: false,
      		},
      
      posted in Utilities
      R
      ryck
    • MMM-Humanize-Duration

      Description

      I just had a baby, and I wanted a geeky way to keep track of his exact age, so…
      You can also use it to track any other past (or future) events!
      Underneath, it’s just a simple wrapper around HumanizeDuration.js

      Screenshots:

      MMM-Humanize-Duration

      Download:

      posted in Utilities
      R
      ryck
    • RE: London bus module

      Or this one: https://github.com/ryck/MMM-TFL-Arrivals 🙂

      posted in Requests
      R
      ryck
    • RE: Need more compliments? compliments.json

      @dmd Just add remoteFile: “compliments.json” to the compliments module configuration

      posted in Fun & Games
      R
      ryck
    • RE: MMM-AQI

      @E3V3A Yes, that’s a good idea, I’ll try to implement it as soon as I have some spare time!

      posted in Health
      R
      ryck