@pat59 show the output of npm start
But when you change the os under an app, it’s recommended to reset it too
Stop MagicMirror
cd ~/MagicMirror
rm -rf node_modules
npm install
Start MagicMirror
@pat59 show the output of npm start
But when you change the os under an app, it’s recommended to reset it too
Stop MagicMirror
cd ~/MagicMirror
rm -rf node_modules
npm install
Start MagicMirror
@WallysWellies in the next release (Oct 1), there is a new field in the top part of the config.js
userAgent:"......"
@musson haven’t tried 32 bit trixie
Will check It out later this afternoon , eye doctor appt shortly
@musson 1st test was bookworm 32 on pi2w… all ok with script…
flashing trixie now
@musson 32 bit trixie is a mess…
can’t change swap without a reboot…
electron takes 20 minutes to start
firefox puts up a web prompt, shouldn’t do this on less than 1 gig, have to click , came up but did not use the parms to go to the MM web page
midori won’t go fullscreen via commandline, like it says it does…
installing surf to see if it works
surf crashes
use bookworm 32 bit.
@benhmin can you download the ics data
In a terminal window do
curl -sL the_calendar_url > somefile.txt
Then you can edit/examine somefile.txt to locate that event
BEGIN:VEVENT….END:VEVENT
As MagicMirror hasn’t received the parsed data yet our debug won’t help
The value should be 20230108
We parse millions of calendar entries a day over all the implementations, this is the first I have of this problem
here is an example RRULE clause with until
RRULE:FREQ=weekly;UNTIL=20260504T230000Z;INTERVAL=1
@RonR did you do this step in the README
https://github.com/KristjanESPERANTO/MMM-ISS-Live?tab=readme-ov-file#preparing-electron
Preparing Electron
MagicMirror² disables the <webview> tag by default. Enable it by adding the following snippet to your config/config.js:
let config = {
...
electronOptions: {
webPreferences: {
webviewTag: true;
}
},
...
}
@RonR ctrl-+. Should zoom in
@dangerousden glad you got it working again!!
@Keithj edit MMM-Traffic.js
change these lines (79/80)
self.errorMessage = payload.error.message;
self.errorDescription = payload.error.description;
to
self.errorMessage = e.message;
self.errorDescription = e.description;
and restart MM
let me know…
@BKeyport I fixed my script to handle that
@chrga I don’t see any module in the 3rd party list that provides that function directly on a per module basis via notifications
this would be a great addition to MMM-RemoteControl
@kristjanesperanto
@BiaGen the latest 2 releases run config check as part of startup, and fail if there is an error like that
I always recommend using manual start whenever changing config, for this very purpose
Stop pm2 mgmt if managing the app
Then
cd ~/MagicMirror
npm start
If any problems they are right there
Once good, ctrl-q MagicMirror
And then use pm2 to launch
@Babene1 the base MagicMirror calendar module does not provide a way to affect styles for ‘today’
You may be able to do this with css.
Looking at the code, it adds a class name ‘today’ to the events for today
So in custom.css
.calendar .today {
color:red;
}
that colorizes the symbol and time
for the title
.calendar .calendar .today .title {
color: red;
}
for both
.calendar .today , .calendar .today .title {
color: red;
}
@rkorell no sorry needed. We all respond when we can
Got it. Both scripts are broken
Backup for not checking and correcting
Restore for not cleaning up
@Getinthegames did you do this part of the setup
If you are not using a Fire Stick Remote: You may need to adjust the key assignments above to match your remote. See Remote Setup for how to run evtest and display the key names for your remote/device.
I think you need this section of the keybindings config
actions: [
{
key: "Home",
state: "KEY_LONGPRESSED",
instance: "SERVER",
mode: "DEFAULT",
notification: "REMOTE_ACTION",
payload: { action: "MONITORTOGGLE" }
},
{
key: "ArrowLeft",
state: "KEY_LONGPRESSED",
notification: "CAROUSEL_PREVIOUS"
},
{
key: "ArrowRight",
state: "KEY_LONGPRESSED",
notification: "CAROUSEL_NEXT"
},
{
key: "Return",
state: "KEY_LONGPRESSED",
changeMode: "DEFAULT"
}
],
I think KeyMap only changes the name
@rkorell I have pushed fixes for both scripts to handle this error in the previous versions…
both backup and restore will handle the case where the restore-branch exists (as now)
and cleanup after…
thanks for the report and feedback
I saw the warning post about the April 1st upgrade and Pi Zero W
no… pi02w is an armv7l processor, pi3 in pi0w physical shape…
@Scruffy use my backup/restore scripts to save and restore your MagicMirror config and modules list
https://github.com/sdetweil/MagicMirror-backup-restore
Backup, copy off backup folder, tiny size
Install new MagicMirror and copy back folder and restore
@atwist the latest PI OS is larger than the previous versions…
leading to more swapping. This can affect performance because of the speed of the SD card.
free -m
will tell you how much memory and swap space you are using.