MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. sdetweil
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    S
    Offline
    • Profile
    • Following 0
    • Followers 108
    • Topics 92
    • Posts 21,151
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: update package list

      @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

      posted in Troubleshooting
      S
      sdetweil
    • RE: Calendar Fetch Error

      @WallysWellies in the next release (Oct 1), there is a new field in the top part of the config.js

      userAgent:"......"
      
      posted in Troubleshooting
      S
      sdetweil
    • RE: 32 bit Trixie

      @musson haven’t tried 32 bit trixie

      Will check It out later this afternoon , eye doctor appt shortly

      posted in Troubleshooting
      S
      sdetweil
    • RE: 32 bit Trixie

      @musson 1st test was bookworm 32 on pi2w… all ok with script…

      flashing trixie now

      posted in Troubleshooting
      S
      sdetweil
    • RE: 32 bit Trixie

      @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.

      posted in Troubleshooting
      S
      sdetweil
    • RE: Calendar Module and Google Private ical URL - Invalid UNTIL value

      @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
      
      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-ISS-Live error 153

      @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;
          }
        },
        ...
      }
      
      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-RAIN-MAP covers part of the module above it

      @RonR ctrl-+. Should zoom in

      posted in Troubleshooting
      S
      sdetweil
    • RE: Cannot access MM2 across the network - localhost ok

      @dangerousden glad you got it working again!!

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-Traffic stuck on loading

      @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…

      posted in Troubleshooting
      S
      sdetweil
    • RE: Magic Mirror Scripts - "Unable to determine upstream"

      @BKeyport I fixed my script to handle that

      posted in Troubleshooting
      S
      sdetweil
    • RE: Dimming of a module

      @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

      posted in Troubleshooting
      S
      sdetweil
    • RE: How to Troubleshoot

      @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

      posted in Troubleshooting
      S
      sdetweil
    • RE: Calendar - colourise events today?

      @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;
      }
      
      posted in Troubleshooting
      S
      sdetweil
    • RE: MagicMirror-backup-restore

      @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

      posted in Troubleshooting
      S
      sdetweil
    • RE: Switch Months - MMM-CalendarExt3 -

      @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

      posted in Troubleshooting
      S
      sdetweil
    • RE: MagicMirror-backup-restore

      @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

      posted in Troubleshooting
      S
      sdetweil
    • RE: PM2 restart question (more of a linux question than MM)

      @wyovino said:

      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…

      posted in Troubleshooting
      S
      sdetweil
    • RE: Failed to Connect to Wayland Display

      @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

      posted in Troubleshooting
      S
      sdetweil
    • RE: Failed to Connect to Wayland Display

      @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.

      posted in Troubleshooting
      S
      sdetweil
    • 1
    • 2
    • 82
    • 83
    • 84
    • 85
    • 86
    • 85 / 86