@swvalenti Wrong double quote characters. Type it from the keyboard, not cut/paste
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-EventHorizon
-
RE: Default Weather module still not displaying
@Jarhead96097 please never do audit… causes more problems than it fixes
-
RE: MMM-euro2024
@0m4r the sample is missing the config:{} section
{ disabled: false, module: "MMM-euro2024", position: "bottom_center", defaults: { updateInterval: 60 * 1000, // one minute }, token: [YOUR_TOKEN] }should be
{ disabled: false, module: "MMM-euro2024", position: "bottom_center", config:{ updateInterval: 60 * 1000, // one minute token: [YOUR_TOKEN] } }your module passes this.config to the node_helper, but there is no config block, so only {} gets passed
this.sendSocketNotification(this.name + 'CONFIG', this.config); -
RE: Default Weather module still not displaying
@mumblebaj and we have found npm install parms to turn off the warning coming in next release, and already in my scripts.
-
RE: MacMirror
@trividar mmm-voice/hello Lucy use pocketsphinx for voice reco. It is supported on osx and Ubuntu.
And those modules support ‘go to sleep’. Which can launch a command to turn off hdmi, or whatever.
My MMM-SleepWake does motion detection via camera and can do the wakeup when they do sleep
-
RE: How to run via browser on Android 2.3
@dude31222 our browser code, and many modules, require JavaScript level ES6.
es6 was approved in 2015.
see
https://caniuse.com/ciu/comparisonselect just the js API checkbox
-
RE: More of a Smart Display than a Magic Mirror..
@Camthalion cool… I will add this
do NOT change our files… every config change can be done thus config.js and custom.css
all your changes to main.css can be done in custom.css
css is a stack , searched from the top down
custom.css on top module provided css main.cssfirst found wins.
so you could put all you main.css changes in custom.css
and some you could change other variables (border size etc) as we have added those things in the last couple releases… (so you don’t have to make such drastic changes)
but very cool
thanks for the repo
-
RE: Default weather module stuck loading after latest MM update
@Peter ok, two things…
you ALSO have to add
weatherEndpoint: "/onecall",to each config, as this is required for the 3.0 api
this makes it work with my 3.0 apikey

second,
in the forum, when you post config, or log info, please use the code block wrapper… else the quotes get changed to workd processing type which JS doesn’t understandto do
paste the text into the editor, blank line above and below
select the text just pasted
hit the </> button above the editor -
RE: Mirror for a Charity Auction
@Tippon yes, you register a URL that targets the machine thru the tunnel
and then u can target specific systems and portsone of those is the guacamole app, in a container
then guacamole will let you create sub apps and different access points to the systems
so my ha.xxx.yyy talks directly to home assistant
but my rm.xxx.yyy talks to guacamole, which has ‘apps’ defined

after I logon to guac, I get a list of my ‘apps’… these present in a web page on the system I am on , so ssh in a web page… now… some things, don’t work the same, nano doesn’t display. but vnc works…
-
RE: Cannot find module 'undici' - 'npm install' doesn't work
@Klinge yes it says we need node 20.18.1 or above
https://forum.magicmirror.builders/topic/19271/version-2-30-0-requires-updated-nodejs-warning-for-pi0w-installationsanyhow quickest way
install tool to allow changing node versionssudo npm install n -g sudo n 20.18.1now do the MagicMirror install
cd ~/MagicMirror npm run install-mm