A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Subcategories

  • 1k Topics
    25k Posts
    Hello everyone, After a lot of trial, error, and some great collaboration, I’m excited to share a new module for displaying YoLink sensor data on your MagicMirror. This module connects to your YoLink account and can display data from your various sensors, like temperature, humidity, and leak detectors. Key Features: Auto-Discovery: No need to manually enter device IDs! Just provide your API keys, and the module will find and display all your compatible sensors. Two-Column Layout: Display a primary sensor statically on the left while rotating through your other sensors on the right. Customizable Alerts: Set up visual alerts, like a flashing name and red text, for specific events like a temperature drop on a monitored sensor. Highly Configurable: Easily filter which devices to show, set custom colors, change temperature units, and more. [image: 1752502951042-573f0e42-c32f-42ed-91b1-c424f3590008-image.png] Download and Instructions: You can find the module, along with detailed installation and configuration instructions, on my GitHub repository: https://github.com/LindsayCole/MMM-YoLink A big thank you to the community for all the indirect help through various forum posts and code repositories that made this possible. This was a community effort, and I hope it can help others who want to integrate their YoLink devices. Please note that I’m sharing this out of goodwill and can’t provide official support, but I’ll do my best to answer questions if I can. Enjoy!
  • Need a module? Maybe someone is interested in coding it.

    1k Topics
    7k Posts
    @xadamxk I did not have to pay or give credit card when i signed up and my wife and i can see where each other are all the time on our phones. Maybe I am grandfathered in, due to having it for so long. It does nag us sometimes to upgrade to paid subscription. I will have to look into if I can add anyone or not.
  • Need help developing a module? You just found it!

    677 Topics
    5k Posts
    @Mistiz you shouldn’t need any certificates for MM to external connections, as the source server is requires to provide the cert that covers its connections… MM does not provide a cert, as we don’t use http, assuming we are on a close private network in our homes. certs are a pita(pain in the a) in general … for access INTO my system , I no longer use an open port, and don’t have to provide certs for every source, or router module(gateway) I use cloudflare zero trust tunnel. they provide the cert, and maintain it. their endpoint connector runs on your network and can http connect to services at that level.
  • You have a problem with a module? Ask for help.

    3k Topics
    20k Posts
    I’m trying to use MMM-BackgroundSlideshow to show a full size background picture and MMM-Carousel to show the clock and weather intermittently. The background image works great but the Carousel just isn’t working. The clock and weather are on all the time. Can someone please take a look at my config and help me figure out what is going on? modules: [ { module: "alert", }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: 'MMM-Carousel', config: { transitionInterval: 10000, ignoreModules: ['MMM-BackgroundSlideshow'], mode: 'global' } }, { module: 'MMM-BackgroundSlideshow', position: 'fullscreen_below', config: { imagePaths: ['modules/MMM-BackgroundSlideshow/exampleImages/'], transitionImages: false, randomizeImageOrder: true, slideshowSpeed: 30000, resizeImages: true, maxWidth: 1024, maxHeight: 600, backgroundSize: 'contain' } }, { module: "weather", position: "bottom_right", config: { weatherProvider: "openmeteo", type: "current", lat: "51.5085", lon: "-0.1257" } } ]