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 110
    • Topics 92
    • Posts 21,389
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: mmm-calendarEXT3 multiple questions

      @redux703 see this post

      https://forum.magicmirror.builders/post/127508

      posted in Troubleshooting
      S
      sdetweil
    • RE: Default Calendar Symbols

      @almightyyoshi you can always use css

      .CX3 .symbol {
              display: none !important;
      }
      
      posted in Troubleshooting
      S
      sdetweil
    • RE: Need "correct" version of node-libgpiod ....

      @rkorell yes, you edit the wiki page, and then the 3rd party list will pick up those changes on the next refresh (once a day)

      posted in Troubleshooting
      S
      sdetweil
    • RE: Cant exit auto running MM

      @_V_ pm2’s JOB is to start the app AND KEEP IT RUNNING, so if it fails (you do a ctrl-q) pm2 restarts it

      pm2 has lots of command options

      in linux by convention commands don’t return any message when successful (as they were built when tty was VERY SLOW)

      also, each command has help

      pm2 --help
      

      and a manual page

      man pm2
      

      SO, to stop MM with pm2, minimize MM, ctrl-m, (or alt-spacebar, n) open a terminal window, ctrl-alt-v, and type

      pm2 status
      

      then

      pm2 stop xx
      

      where xx is the name or the number of the row with the app on it…
      one can create MULTIPLE managed apps with the SAME name, so sometimes the number matters

      posted in Troubleshooting
      S
      sdetweil
    • RE: CalendarEXT3 questions

      @_V_ said in CalendarEXT3 questions:

      The CW counting not

      try this

                minimalDaysOfNewYear: "1",
      

      I posted somewhere before (a month ago I think) , but can’t find it…

      posted in Troubleshooting
      S
      sdetweil
    • RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working

      @AndyHazz these fixes are in the next release Oct 1

      posted in Troubleshooting
      S
      sdetweil
    • RE: Non-Typical Setup, MM Stops Showing New Pictures (ImagesPhotos module)

      @ember1205 great feedback, thank you
      Glad it’s working again

      posted in Troubleshooting
      S
      sdetweil
    • 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
    • 1 / 1