MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. JMac
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    J
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 11
    • Posts 80
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Default weather module stuck loading after latest MM update

      @butchkemper Is this the default weather module or an additional one?

      posted in Troubleshooting
      J
      JMac
    • RE: Default weather module stuck loading after latest MM update

      @karsten13 how do I update this specifically.

      Everything was working fine prior to the latest MM update.

      posted in Troubleshooting
      J
      JMac
    • Default weather module stuck loading after latest MM update

      I’ve just updated the MM to the latest version, everything seems to have gone fine except the default weather module, which is now stuck in a “loading” phase.

      I found an older post saying the newer version of this module needed an APIkey over an APIid but the MM setup is newer than this post so already has this change.

      Has anyone had this same issue since this latest update, or have any ideas how to sort this?

      Seems I can’t even update the MM without causing an issue.

      for completeness I got this at the bottom of the update using
      git pull && npm run install-mm,

      npm ERR! code EBADENGINE
      npm ERR! engine Unsupported engine
      npm ERR! engine Not compatible with your version of node/npm: magicmirror@2.29.
      npm ERR! notsup Not compatible with your version of node/npm: magicmirror@2.29.
      npm ERR! notsup Required: {“node”:“>=20.9.0 <21 || 22”}
      npm ERR! notsup Actual: {“npm”:“10.1.0”,“node”:“v20.8.0”}

      npm ERR! A complete log of this run can be found in: /home/MagicMirror/.npm/_los/2024-10-06T07_38_42_762Z-debug-0.log

      would these errors cause the issue I’m seeing?
      cheers.

      posted in Troubleshooting
      J
      JMac
    • RE: MMM-PIR

      @sdetweil That was exactly how PIR sensor lite worked on the same pi 3.
      screen would turn off after time interval - i had it set to 5 minutes - pi would detect a hand swipe past the PIR sensor, pi would wake the screen up and the 5 minute cycle would start again.

      do we (you) think the mode 4 for HDMI in this module will function the same?

      posted in Troubleshooting
      J
      JMac
    • RE: MMM-PIR

      @sdetweil
      So if I stick with MMM-Pir am I right in thinking if u set the mode to mode 4 in the script it would turn the screen off via the HDMI?

      Just read that it is set to mode 1 by default which uses vgencmd but my screen and pi are connected via HDMI.

      Would be handy to get this one turning the screen off entirely (if possible) and use the PIR to turn it back on, as the rest of the MM is working nicely.

      posted in Troubleshooting
      J
      JMac
    • MMM-PIR

      I had a MM set up and running nicely before the SD card failed (lesson learnt).

      It was using MMM-PIR sensor lite and working perfectly with this sensor.
      This module is no longer developed/maintained and has been achieved so now I’m using MMM-PIR which works.

      However, the difference between the 2 is that the PIR sensor lite would physically turn the screen off and put it in standby, then wake the screen up when the PIR sensed movement.
      MMM-PIR appears to only blank the screen of modules so the screen stays on (albeit black) but the screen is still on.
      Not ideal at night/for mirror usage/power use.

      Can MMM-PIR be configured to put the screen in standby?
      With PIR sensor lite, will this still work even though the module is no longer maintained or will this become an issue as MM evolves?

      Cheers.

      posted in Troubleshooting
      J
      JMac
    • RE: MMM-GooglePhotos taking over entire screen

      @sdetweil wherever I position the module it’s always at the correct height on the screen but always up against the right hand edge of the screen.

      edit to add by setting the show width/height, it’s sensible size.

      any thoughts on this?

      posted in Troubleshooting
      J
      JMac
    • RE: The most basic question about custom css

      so I added,
      #GPHOTO_CURRENT {
      background-size: cover;
      }
      to the custom.css in the MagicMirror/css folder,

      from your list this appears to be the correct place to put it, yet it appears to make no difference.

      posted in Troubleshooting
      J
      JMac
    • MMM-GooglePhotos taking over entire screen

      I’ve got this module up and running with a small number of photos in an album - just for testing purposes.

      I initially had the module set up to display over the entire screen using the position background_below.
      I didn’t like this and have set the module to bottom_bar, the same position as MMM-CalendarExt3 so I can use MMM-Carousel to switch between these two.

      I’m using the default code example from the module
      {
      module: “MMM-GooglePhotos”,
      position: “bottom_bar”,
      config: {
      albums: [albumname],
      updateInterval: 1000 * 60, // minimum 10 seconds.
      sort: “random”
      uploadAlbum: null, // Only album created by create_uploadable_album.js.
      condition: {
      fromDate: null, // Or “2018-03”, RFC … format available
      toDate: null, // Or “2019-12-25”,
      minWidth: null, // Or 400
      maxWidth: null, // Or 8000
      minHeight: null, // Or 400
      maxHeight: null, // Or 8000
      minWHRatio: null,
      maxWHRatio: null,
      // WHRatio = Width/Height ratio ( ==1 : Squared Photo, < 1 : Portraited Photo, > 1 : Landscaped Photo)
      },
      showWidth: 1080, // These values will be used for quality of downloaded photos to show. real size to show in your MagicMirror region is recommended.
      showHeight: 1920,
      originalWidthPx: 1920,
      originalHeightPx: 1080,
      timeFormat: “YYYY/MM/DD HH:mm”, // Or relative can be used.
      }
      },

      I’ve // ShowWidth, showHeight, originalHeightPx and originalwidthPx.

      from the module install info I’ve tried adding
      #GPHOTO_CURRENT {
      background-size: cover;
      }
      to the custom.css file in the MagicMirror/css as the guidance says this should make it cover one position on the screen (I’ve again used bottom_bar).

      But when launching the MM the Googlephoto overlays everything else on the screen.

      what am I missing to get the photo to only take up the lower portion of the screen so it can be switched at set time intervals with my calendar in the same bottom_bar position?

      My apologies for how the code is formatted following it being copied and pasted.

      Cheers.

      posted in Troubleshooting
      J
      JMac
    • RE: The most basic question about custom css

      @tdw
      I’m currently looking at 3 files within the MagicMirror/css folder.
      custom.css
      custom.css-sample
      main.css

      so does it go in the custom.css file or do I have to make a new custom.css file containing the information for this one module and save it?

      do all future css changes go within the custom.css file, or does each css change have it’s own file?

      posted in Troubleshooting
      J
      JMac
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 3 / 8