@Rags
Did you get it to work like it did on bookworm?
Mine on Trixie looks like it goes into screensaver mode, but I have made sure screen blanking is turned off in raspi-config
I ran Sam’s screensaver off script. Mine just keeps blanking the screen the exact same image works fine on bookworm but blanks on trixie… Really frustrating.
Read the statement by Michael Teeuw here.
Posts
-
RE: MagicMirror on Trixie
-
RE: Best Weather module.
@sdetweil
Don’t think so, because I use the same location for pirate one.
It is pretty much spot on most of the time. Open weather was off more than it wasn’t lately.
@mumblebaj
I did not know Noaa3 was still working. I will give it a try… -
Best Weather module.
I am using MMM-PirateSkyForecast module, I think that is the name of it.
I am wanting to find one that is the most accurate with temps and precipitation.
We removed MMM-OpenWeatherForecast with Api3.0 due to inaccurate weather.
It was telling us 11 inches of rain expected with a 23% chance of rain with the temp constantly off 5 to 10 degrees.
Just wondering what everyone else is using and if what you use is very accurate or not at all. -
RE: Pi Zero and MagicMirror2
@sdetweil
Ok, I can do that already have node at 18 and npm at 9 I have notes on upgrading them.
Thanks for the reminder on how to do this…
Much appreciated. -
RE: Pi Zero and MagicMirror2
@sdetweil
This is what I get when i try you install script.
Is there a fix for this I can’t find in my notes or online?pi@Zero:~ $ bash -c "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/raspberry.sh)" $$\ $$\ $$\ $$\ $$\ $$\ $$$$$$\ $$$\ $$$ | \__| $$$\ $$$ |\__| $$ __$$\ $$$$\ $$$$ | $$$$$$\ $$$$$$\ $$\ $$$$$$$\ $$$$\ $$$$ |$$\ $$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ \__/ $$ | $$\$$\$$ $$ | \____$$\ $$ __$$\ $$ |$$ _____|$$\$$\$$ $$ |$$ |$$ __$$\ $$ __$$\ $$ __$$\ $$ __$$\ $$$$$$ | $$ \$$$ $$ | $$$$$$$ |$$ / $$ |$$ |$$ / $$ \$$$ $$ |$$ |$$ | \__|$$ | \__|$$ / $$ |$$ | \__|$$ ____/ $$ |\$ /$$ |$$ __$$ |$$ | $$ |$$ |$$ | $$ |\$ /$$ |$$ |$$ | $$ | $$ | $$ |$$ | $$ | $$ | \_/ $$ |\$$$$$$$ |\$$$$$$$ |$$ |\$$$$$$$\ $$ | \_/ $$ |$$ |$$ | $$ | \$$$$$$ |$$ | $$$$$$$$\ \__| \__| \_______| \____$$ |\__| \_______|\__| \__|\__|\__| \__| \______/ \__| \________| $$\ $$ | \$$$$$$ | \______/ install log being saved to /home/pi/install.log nodejs version required for MagicMirror is no longer available for armv6l (pi0w) devices installation aborted -
RE: Pi Zero and MagicMirror2
@sdetweil
yes, I tried using your script like usual, but it gives me the electron message.
I have bookworm 32 bit on it. Went into raspi-config and set the default browser to firefox. Set my location and time ect. Turned on VNC had to update the raspi-config first. So many hoops to jump through anymore… Can I install electron manually so that your script works on my pi0 ? I like your scripts they take a LOT of the time setting up out of the equation… Especially your backup script… It saved me a lot of work recently when I lost the sd card on my LePotato that only runs MMM-MPlayer So I have a screen with my Driveway camera showing 24/7, I live out in the sticks. -
Pi Zero and MagicMirror2
I had MagicMirror on my PiZero and lost the sd card, replaced it with a new one and now I can not get MagicMirror to load.
-
RE: MMM-NFL update ?
@mishman
cd MagicMirror/modules
git clone https://github.com/fewieden/MMM-NFL.git
cd MMM-NFL
npm install --productionConfigure your ~/MagicMirror/config/config.js:
{ module: "MMM-NFL", position: "middle_center", config: { colored: true, helmets: true, focus_on: ["KC", "BLT", "BUF", "CIN", "CHI", "CLE", "DEN", "PHI", "TB", "DAL", "MIA", "NYJ"], format: "ddd, hA", reloadInterval: 1800000, tableSize: "large" }, },the options are on the github page.
https://github.com/fewieden/MMM-NFL -
RE: Screen "offline" during specific time of day
@_V_
You can set crontab -e to stop mm .
Here is the lines from my crontab -e# Turn off display Sunday - Thursday at 21h00 00 21 * * 0-4 /usr/local/bin/pm2 stop all # Turn off display Friday - Saturday at 21h00 00 21 * * 5,6 /usr/local/bin/pm2 stop all # Turn on screen Monday - Friday at 6h45 45 06 * * 1-5 /usr/local/bin/pm2 start mm # Turn on screen Saturday - Sunday at 7h30 30 07 * * 6,0 /usr/local/bin/pm2 start mmMy screen has no background and is black in color, then I set my bar to black with gray letters. That way when MM is not running the screen is really dark .
works pretty well for night time. Your mileage may vary…