you can try the ip-address of the pi in config.js as address: instead of "0.0.0.0".
Read the statement by Michael Teeuw here.
Posts
-
RE: CORS Policy Issue - different at electron and remote Chrome Browser
-
RE: Having difficulty starting my mirror. I really need some help
@sdetweil said in Having difficulty starting my mirror. I really need some help:
But it’s provided and is a ‘quick’ ‘win’ to get base up and running.
I’ve had another setup running for a while now, which solves some of the problems but of course also has its drawbacks.
It runs on Fedora with PM2. Why Fedora? Because I use bootc and therefore get automatic operating system updates. The downside is, of course, modules related to the Pi’s hardware, but the PIR sensor works.
-
RE: MMM-RAIN-MAP
said in MMM-RAIN-MAP:
but since today, the two lowest of my four zoom levels seem to have stopped working
they are definitely gone …
I used for several years
mapPositions: [ { lat: ${LAT}, lng: ${LON}, zoom: 9, loops: 1 }, { lat: ${LAT}, lng: ${LON}, zoom: 8, loops: 1 }, { lat: ${LAT}, lng: ${LON}, zoom: 7, loops: 1 }, { lat: ${LAT}, lng: ${LON}, zoom: 6, loops: 1 }, ],and now found in their docs
Maximum zoom level is 7.Another restriction is that there is no forecast anymore (as already stated in the module readme).
That’s a shame, it unfortunately devalues the module.
-
RE: How to use Yr as a weather provider
see https://github.com/MichMich/MagicMirror-Documentation/pull/134/files
will hopefully soon merged into official documentation (there are merge conflicts …)
-
RE: MMM-RAIN-MAP
colorSchemeseems to be useless too, the docs only mention2which is the default in the module, if I try other values there is no difference. -
RE: v2.22.0 | default calendar: no symbols with customEvents
@sdetweil said in v2.22.0 | default calendar: no symbols with customEvents:
you can pull down the develop branch and try it out.
the fix is not on
developbecause it is not merged yet but it should not take a long time … -
RE: Magic Mirror Update fail
npm install node-fetchwill install the latest version which is av3.xmm does not support typescript and so needs a
v2.xversion.you have to look up the latest
v2.xrelease and install this. This is a problem ofMMM-Weatherand should be fixed there. -
RE: MMM-RAIN-MAP
I’m using https://globe.airplanes.live/ and they have a RainViewer Layer which still works when zooming in - maybe they use a license key …

Another approach I played with is using german dwd data (problem: germany only), tested this in my MMM-Flights module:

-
RE: Default Weather Module (Weathergov) stuck on loading
@angeliKITTYx said in Default Weather Module (Weathergov) stuck on loading:
if I use the above url in the browser I get

so you can wait or use another weather provider …
-
RE: MM current version on Raspberry Pi 5 cannot turn off monitor
and interesting idea being described for integrating older devices, like washing machine, is to monitor the power consumption with a smart plug… (I don’t know which do that in the US)
thats exactly what I plan for my washing machine
I wonder if the pi also has a lower consumption that can be measured and used as a trigger to turn off the smart switch when the power drops after pi shuts down…
I ordered a smart plug from TuYa for this and tested this now with a raspberry pi 4.
When the pi is running:

After shutdown of the pi but red light of pi still on:

-
RE: module.js mismatch error and good by os
I think the fetch errors are related to https://github.com/MagicMirrorOrg/MagicMirror/issues/3329
you can try the newest electron version or disable ipv6
-
RE: Default weather module stuck loading after latest MM update
@sdetweil said in Default weather module stuck loading after latest MM update:
@karsten13 dang I get that wrong EVERY time!
one of the reasons I wrote my own njk …

-
RE: Docker install on synology nas
looks like the volumes on the host were created by
root. The user in the container runs as usernodewith uid/gid 1000.So you can try
a) cd to
/volume1/docker/on the host and runchown -R 1000:1000 ./magicmirror(you have to do this asroot)or
b) run the container as user
root, you have to add--user root \to the
docker run ...command -
RE: Electron quit periodically
I deleted your config posted above because you published all your secrets in it …
-
RE: Issue with latest build of Karsten’s docker labwc container?
fixed now, you can restart the pi (it will need some time to pull the new image before working) or
cd /opt/mm/run docker compose pull docker compose up -d