@sdetweil Yeah, was reading that earlier when you posted it from another issue. Will see if I can pull the MM repo and have a look at the code in there.
Read the statement by Michael Teeuw here.
Module Developers
You have developed a module for the MagicMirror? Join the group and get a "Module Developer" badge!
Posts
-
RE: Restart MagicMirror once a day
-
RE: MMM-Carousel and modules that are currently generating an empty div
@sdetweil and @redfishbluefish When I had the same issue with my MMM-NewsAPI module where if a user opted not to show a QR Code, it would create an empty div which took up space. I had to implement the following in code to dynamically remove the div for it if the option is not selected. You would need to have similar logic for if no alert results are returned you remove all traces of the parent div.
else { const qrCodeElement = document.getElementById("NEWSAPI_QRCODE") if (qrCodeElement) { qrCodeElement.parentNode.removeChild(qrCodeElement) } }
This is how I have implemented it in my module, may not be the most elegant but works for me and the QR div no longer takes up the space if the user did not opt to show it.
-
RE: MMM-DBF does not work, no error messages
showApp: false,
disabled: true,
is the option setting to disable modules. Where did you findshowApp
?it is showing the timetable app
So it works without the other modules and doesn’t work when you activate the other modules? Can you figure out with which module it stops working?
Is there any way to enable a (verbose) logging output to show what this module does?
Seem that this module doesn’t have debug outputs. Only errors you could see in the browser console.
Also, maybe it is important - when I start up MagicMirror, it gives the following error messages:
I’m quit sure this is unrelated to this issue. You can try using the Wayland start option (
npm run start:wayland
) instead of the default start option (npm run start
). -
RE: MMM-DBF does not work, no error messages
@sletrabf Have you tried deactivating all modules except for MMM-DBF to see if the problem disappears?
-
RE: MMM-NOAA3 - Revived
@htilburgs Thanks for confirming. I double checked the icons available from weatherbit and compared to the list and they are all covered. Hopefully it was just a once off thing. 🙏
-
RE: MMM-DBF does not work, no error messages
@sletrabf With your config and the changes to the custom.css file, the module works on my system.
Please show us the system information provided in the terminal when you start MM. It looks like this:
[2025-05-18 11:54:32.378] [INFO] System information: ### SYSTEM: manufacturer: Notebook; model: N650DU; virtual: false ### OS: platform: linux; distro: Debian GNU/Linux; release: 12; arch: x64; kernel: 5.10.0-20-amd64 ### VERSIONS: electron: 35.1.2; used node: 24.0.1; installed node: 24.0.1; npm: 10.9.0; pm2: 5.4.3 ### OTHER: timeZone: Europe/Berlin; ELECTRON_ENABLE_GPU: undefined
-
RE: MMM-NOAA3 - Revived
@htilburgs Good morning. I have just tested weatherbit using you lat and lon and not seeing any errors.
-
RE: LICENSE: on modules.magicmirror.builders shows @noassertion instead of MIT
@sdetweil said in LICENSE: on modules.magicmirror.builders shows @noassertion instead of MIT:
that is the wrong screen image…
How the image is selected is documented here:
https://github.com/MagicMirrorOrg/MagicMirror-3rd-Party-Modules#how-do-i-get-my-module-presented-perfectly-in-the-new-list -
RE: MMM-NOAA3 - Revived
@htilburgs I will have a look at weatherbit. They may have changed icons.
Just a little busy today but when I get a moment I will definitely have a look.
I also require your lat and lon so I can get the data/icons for your region/area
-
RE: MMM-NOAA3 - Revived
@htilburgs Hi, thanks for the complement. I have updated accordingly. Thanks for that.