Read the statement by Michael Teeuw here.
Posts
-
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: 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
develop
because it is not merged yet but it should not take a long time … -
RE: Magic Mirror Update fail
npm install node-fetch
will install the latest version which is av3.x
mm does not support typescript and so needs a
v2.x
version.you have to look up the latest
v2.x
release and install this. This is a problem ofMMM-Weather
and should be fixed there. -
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 usernode
with 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