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

    Bill Burch

    @Bill Burch

    0
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Bill Burch Unfollow Follow

    Latest posts made by Bill Burch

    • RE: New icons not showing up - default MM-Weather modules

      @sdetweil Good call on the swapfile. Bumped it up to 16GB (32GB card) and the browser and dev tools load and work as they should. Thanks.

      posted in Troubleshooting
      B
      Bill Burch
    • RE: New icons not showing up - default MM-Weather modules

      @sdetweil Thanks, Sam. One big issue I may be having is I’m trying to run MM on a Pi Zero 2W. Looks like I may be a bit underpowered for what I’m trying to do. Chromium hangs/crashes and the Dev tool is painfully slow with selecting and scrolling. I’ll try upgrading to a 4B with 2gb memory and see if that helps.

      Bill

      posted in Troubleshooting
      B
      Bill Burch
    • RE: New icons not showing up - default MM-Weather modules

      @sdetweil Thanks, Sam. I’m struggling with how SLOW the Dev tool works on my Pi Zero W2. Scrolling is painfully slow and eventually causes the browser to hang/crash.

      Bill

      posted in Troubleshooting
      B
      Bill Burch
    • New icons not showing up - default MM-Weather modules

      Newbie here. I would like to add animated .svg weather icons to my default weather module configurations.

      I’ve loaded a test file (“day.svg”) into my /MagicMirror/css/icons folder and created the following instructions within my “custom.css” file located in my css folder.

      .currentweather .weathericon {
      position: absolute;
      z-index: 0;
      height: 200px;
      right: 180px;
      margin-top: -65px;
      }

      .currentweather .wi-day-sunny {
      content: url(“/css/icons/day.svg”);
      }

      My water module is correctly configured and showing the current weather and icons for my selected region ID. It’s currently sunny outside so I’d expect that my newly uploaded icon would show up in the current weather window. But it does not.

      What am I missing? Do I need to do anything to enable the custom.ccs file?

      As per another thread in the Forum about adding animated icons, I also added the following callouts in my “config.js” file:

      {
      module: “weather”,
      position: “top_right”,
      config: {
      weatherProvider: “openweathermap”,
      type: “current”,
      location: “Reno”,
      locationID: “5511077”, //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find yo>
      apiKey: “x1x1x1x1x1x1x”, //hidden
      iconTable: {
      ‘01d’: ‘wi-day-sunny’,
      ‘02d’: ‘wi-day-cloudy’,
      ‘03d’: ‘wi-cloudy’,
      ‘04d’: ‘wi-cloudy-windy’,
      ‘09d’: ‘wi-showers’,
      ‘10d’: ‘wi-rain’,
      ‘11d’: ‘wi-thunderstorm’,
      ‘13d’: ‘wi-snow’,
      ‘50d’: ‘wi-fog’,
      ‘01n’: ‘wi-night’,
      ‘02n’: ‘wi-night-cloudy’,
      ‘03n’: ‘wi-night-cloudy’,
      ‘04n’: ‘wi-night-cloudy’,
      ‘09n’: ‘wi-night-showers’,
      ‘10n’: ‘wi-night-rain’,
      ‘11n’: ‘wi-night-thunderstorm’,
      ‘13n’: ‘wi-night-snow’,
      ‘50n’: ‘wi-night-alt-cloudy-windy’
      }
      }
      },

      Any guidance is much appreciated.

      Bill

      posted in Troubleshooting
      B
      Bill Burch