A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • MMM-CalendarWeek doesn't display

    22
    0 Votes
    22 Posts
    3k Views
    S
    @DarrenO-0 please use code blocks around config , css, json, or error listing’s
  • [FR] MMM-FranceInfo

    1
    0 Votes
    1 Posts
    265 Views
    bugsounetB
    Affiche les flux rss de franceinfo: sur MagicMirror² [image: franceinfo.png] Screenshot [image: FRINFO.png] Informations Consultez MMM-FranceInfo sur GitHub
  • MMM-Glassy

    1
    2 Votes
    1 Posts
    725 Views
    bugsounetB
    MMM-Glassy This module allows to add a glass effect to MagicMirror² modules Screenshot [image: Screenshot.png?raw=true] Informations Just checkout MMM-Glassy GitHub repository
  • MMM-EskomSePush

    8
    3
    1 Votes
    8 Posts
    1k Views
    Z
    @mumblebaj I am going to try that with my previous image. Thanks for the heads up
  • MMM-Fuel

    1
    0 Votes
    1 Posts
    367 Views
    N
    Hi, There seems something has changed with the MMM-Fuel that it does not work. When starting up MagicMirror the MMM-Fuel gives the following error message - as attached below : [01.04.2024 16:43.25.295] [LOG] [MMM-Fuel]Failed to refresh token FetchError: invalid json response body at https://api.onegov.nsw.gov.au/oauth/client_credential/accesstoken?grant_type=client_credentials reason: Unexpected token ‘<’, "<!DOCTYPE "… is not valid JSON at /home/pi/MagicMirror/modules/MMM-Fuel/node_modules/node-fetch/lib/index.js:272:32 at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async refreshToken (/home/pi/MagicMirror/modules/MMM-Fuel/apis/nsw.js:47:32) at async module.exports (/home/pi/MagicMirror/modules/MMM-Fuel/apis/nsw.js:218:5) at async Class.socketNotificationReceived (/home/pi/MagicMirror/modules/MMM-Fuel/node_helper.js:25:33) { type: ‘invalid-json’ } Can some please tell us what is the problem and how it can be fixed. Thank you and much appreciated. Regards, Neel.
  • A few CalExt3 questions: background images, glance, and symbols

    10
    0 Votes
    10 Posts
    3k Views
    G
    @MMRIZE thank you very much
  • MaxAgeInHours

    1
    0 Votes
    1 Posts
    310 Views
    U
    Re: MMM-NINA Hallo Jalibu, auch von meiner Seite vielen Dank für die App. Für mein aktuelles Beispiel liegt eine Hochwassermeldung vor. 23.02.2024 08:40 - 24.02.2024 12:00 Aktuell 23.02.2024 18:23 Bei MaxAgeInHours 6 wird die Meldung nicht angezeigt obwohl Sie aktuell ist. Erst bei einer Erhöhung zum Beispiel auf 72 wird sie angezeigt. Mein Verständnis die Warnung und MaxAgeinHours reagiert auf den Meldungszeitpunkt. Ich würde aber erwarten das Sie solange die Meldung gültig ist (Endzeitpunkt) diese anzeigen sollte. Danke Gruß Uwe
  • MMM-WeatherAlerts - granularity

    3
    0 Votes
    3 Posts
    701 Views
    J
    @jbat66 - yes, it is frustrating to know or hear that severe weather is nearby, but the module seems incapable of being configured to display alerts as needed. @Gjones93 - as the author, can you provide any input?
  • MMM-WeatherDependentClothes - Be properly dressed

    16
    3 Votes
    16 Posts
    7k Views
    A
    hello, I installed the module but stay loading on the MM. Any advice ? Thanks marc
  • Vigicrue Data not up to date

    1
    0 Votes
    1 Posts
    166 Views
    E
    Re: MMM-VigiCrues Hello @grena, The data is no longer updated. What should I do ?
  • MMM-Netatmo in Italian for MM 2.26

    1
    1 Votes
    1 Posts
    255 Views
    L
    Hi everyone, I want to share with you my branch of MMM-Netatmo by Raymond Molenaar which contains the Italian translation and corrections to the package.js file to be compatible with MM 2.26, I hope my work is appreciated. Enjoy https://github.com/Liveteo/MMM-Netatmo
  • Xfinity data usage module

    1
    0 Votes
    1 Posts
    251 Views
    N
    Has anyone played with a way to display current data usage for the month from xfinity? I saw one project that does export to HA but it wasn’t directly related to MM. Thx
  • CalendarExt3 Correct calendar not displayed

    4
    0 Votes
    4 Posts
    850 Views
    M
    @sdetweil More specific code is needed. https://github.com/MMRIZE/MMM-CalendarExt3/wiki/Examples-%26-Tips [image: 1705047870616-9bcedacd-a6c8-4ad9-bc55-f610ac85af9f-image.png]
  • MMM-VigilanceMeteoFrance

    27
    2 Votes
    27 Posts
    12k Views
    G
    Hello everyone, MMM-VigilanceMeteoFrance 2.2 was released and uses the simplified authentication system from Météo France . A single Application ID is now required instead of 2 keys for the module to work, please update your configuration! More info here Grena
  • [MMM-MySQLData] Get values from mysql database

    1
    1
    2 Votes
    1 Posts
    284 Views
    T
    Description A MagicMirror² module to connect to a MySQL database, run a select query (one value) and display the result. Screenshots [image: 1704832375840-558532ad-9a8b-4bc0-9e89-3f431279051e-image.png] Download https://github.com/tabsl/MMM-MySQLData Config example var config = { modules: [ { module: "MMM-MySQLData", position: "top_center", config: { id: Math.floor(Math.random() * 100), host: "YOUR_HOST", username: "YOUR_USERNAME", password: "YOUR_PASSWORD", database: "YOUR_DATABASE_NAME", port: 3306, values: [ { "id": "power_current", "interval": 60000, "title": "Current power consumption", "praefix": "", "suffix": " w", "query": "SELECT round(data) AS value FROM power_consumption WHERE type = 'current' ORDER BY date DESC LIMIT 1", "styles": { "ok": "< 100", "warn": "> 1000", "alert": ">= 10000" } }, { "id": "power_total", "interval": 720000, "title": "Total power consumption", "praefix": "", "suffix": " kW", "query": "SELECT round(data/1000) AS value FROM power_consumption WHERE type = 'total' ORDER BY date DESC LIMIT 1", } ] } } ] } Changelog https://raw.githubusercontent.com/tabsl/MMM-MySQLData/main/CHANGELOG.md
  • Internet Monitor

    108
    10 Votes
    108 Posts
    142k Views
    bheplerB
    @ebourne I had a branch of the internet-monitor module that I was using to test a fix. Before I merge it into the master branch, I wanted people to try out the fix and give me some feedback. I guess I never got around to deleting it. The master branch had the updates, so it’s not a big deal. Thanks to @KristjanESPERANTO I have a new fix in place and it has been merged into the master branch. It should be easy to update the module: get an SSH connection to your mirror. navigate to the internet-monitor folder pull the latest updates with git pull install the changes with npm install Restart your magic mirror process and it should work again. Just a quick note: I don’t really maintain this module. I created a fork to get it running a long time ago after the author abandoned it. I try to help out from time to time, but this is not one of my priorities. Hence, the README file and example configuration are a bit of a mess.
  • MMM-birthdays

    module reminders
    13
    1
    2 Votes
    13 Posts
    6k Views
    J
    I updated MMM-birthdays to add the ability to turn off the module when there are no bdays to show. Also added the ability to update the name of the title/header Pull request here: https://github.com/amitchone/MMM-birthdays/pull/10 My fork, if you want to install and test it. https://github.com/jbat66/MMM-birthdays Thank you Adam for writing this module.
  • MMM calendar3

    1
    0 Votes
    1 Posts
    512 Views
    M
    ich benötige bitte hilfe ich bin relativ unerfahren bei der sache zu erstellen ich Calendarexte wo ist der fehlerbitte um hilfe lg mario modules: [ { module: "alert", }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: 'MMM-MonthCalendar', position: "top_left", header: " Mario-Kalender", config: { updateDelay: 5, showAdjacentMonths: true } }, { module: "calendar", header: "Feiertage und Ferien ", position: "bottom_left", config: { calendars: [ { symbol: "calendar-check", url: "webcal://ferienwiki.de/exports/feiertage/2023/de" }, { symbol: "Mycalendar", url: "https://calendar.google.com/calendar/ical/mario.hink1980%40gmail.com/private-a8b273b25102xxxxxxxx2af76d01/basic.ics" } }, { module: "MMM-CalendarExt3", position: "bottom_bar", title: "", config: { mode: "month", instanceId: "basicCalendar", locale: 'de-DE', maxEventLines: 5, firstDayOfWeek: 1, calendarSet: ['us_holiday', 'abfall', 'mytest'], /* default/calendar module configuration */ { module: "calendar", position: "top_left", config: { broadcastPastEvents: true, // <= IMPORTANT to see past events calendars: [ { url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics", name: "us_holiday", // <= RECOMMENDED to assign name color: "red" // <= RECOMMENDED to assign color } }, ] }, { module: "compliments", position: "lower_third" }, { module: "weather", position: "bottom_right", config: { weatherProvider: "openweathermap", type: "current", location: "Kreis-Wesel-Moers", locationID: "2870221", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city apiKey: "99530fcf9xxxxxxxd6b7fa6" } }, { module: "weather", position: "top_right", header: "Wetter Vorhersage Kreis Wesel", config: { weatherProvider: "openweathermap", type: "forecast", location: "Kreis-Wesel-Moers", locationID: "2870221", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city apiKey: "99530fcf932d2cb913xxxxx7fa6" } }, { module: 'MMM-Globe', position: 'top_right', config: { style: 'natColor', imageSize: 40, ownImagePath:'', updateInterval: 3*60*1000 } }, /*{ module: 'MMM-SystemStats', position: 'bottom_right', // This can be any of the regions. // classes: 'small dimmed', // Add your own styling. OPTIONAL. // header: 'System Stats', // Set the header text OPTIONAL config: { updateInterval: 10000, // every 10 seconds align: 'right', // align labels //header: 'System Stats', // This is optional units: 'metric', // default, metric, imperial view: 'textAndIcon', } },*/ { module: 'MMM-BackgroundSlideshow', position: 'fullscreen_below', config: { imagePaths: ['modules/MMM-BackgroundSlideshow/exampleImages/'], transitionImages: true, randomizeImageOrder: true } }, { module: "newsfeed", position: "top_bar", config: { feeds: [ { title: "Nachrichten aus der Welt", url: "https://www.tagesschau.de/xml/rss2" } ], showSourceTitle: true, showPublishDate: true, broadcastNewsFeeds: true, broadcastNewsUpdates: true } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}
  • MMM-SystemStats (cpu temp/load, fre ram ...)

    74
    3 Votes
    74 Posts
    71k Views
    N
    @BenRoe Hi Ben! Love the module! Couple questions. My “Avail Space” portion of this module isn’t giving any values. Do you have any idea why this might be? I also am having trouble with the header not showing. My system load peaks around 2, but I’m reading that with a quad core raspi 4b, this is normal. Any input would be greatly appreciated. Thanks, Nick
  • Not getting news

    2
    0 Votes
    2 Posts
    345 Views
    M
    @WilliamF The free tier of NewsAPI provides only 1-day later news. When you want realtime news, you should pay. If you set config valuechoice: "headlines", you can use category, but; Only available categories; business, entertainment, general, health, science, sports, technology. It cannot be used mixed with sources. For the specified country or language, you can test it by yourself. You can open the browser and navigate this. (Replace API_KEY to yours. You can get your API_KEY on newspai.org site after login) headlines; https://newsapi.org/v2/top-headlines?country=se&apiKey=API_KEY [image: 1703079292139-5d0630b3-b72a-48cb-bb1c-18568718cc79-image.png] everything; https://newsapi.org/v2/everything?language=en&q=apple&apiKey=API_KEY [image: 1703079467918-c66d9db4-b8ff-41b4-90c6-4b5a2d8aa183-image.png] But the API doesn’t support se language. [image: 1703079676451-ba857ec9-b7fc-41b9-8bc7-fcb9c274052e-image.png] For the usage of country, everything endpoint doesn’t support country options. Only the headlines endpoint supports it. But you should know this; country: "se" doesn’t mean “News from Swedish Press”, but rather similar to “Popular news in Sweden” or “news consumed commonly in/about Sweden”.