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

    chanster

    @chanster

    1
    Reputation
    26
    Profile views
    25
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    chanster Unfollow Follow

    Best posts made by chanster

    • RE: MMM-MyStandings

      Love this module ! Instead of grouping by divisions, is there a way group by conference instead for NBA?

      posted in Sport
      C
      chanster

    Latest posts made by chanster

    • Updated Olympics module?

      The existing Olympics modules are several years old. Anyone working on an updated module for the this year’s Olympics?

      posted in Requests
      C
      chanster
    • RE: Weather module not showing temperature in Celsius

      @wenike I’m in California but I’m a transplant from Australia and I still cannot get used to Fahrenheit ! :). So I need to use a different provider? I tried using OpenWeatherMap but I found that their forecast is not very accurate.

      I switched it over to Weatherbit and am getting the temperature in Celsius now. Thanks for pointing me in the right direction!

      Screen Shot 2021-07-16 at 6.48.27 PM.png

      posted in Troubleshooting
      C
      chanster
    • Weather module not showing temperature in Celsius

      How can I get the weather module to show the forecast in Celsius? The values below are in Fahrenheit not Celsius otherwise we would be fried.

      Screen Shot 2021-07-16 at 3.44.54 PM.png

              {
                  module: "weather",
                  position: "top_left",
                  config: {
                      type: 'forecast',
                      weatherProvider: 'weathergov',
                      apiBase: 'https://api.weather.gov/points/', 
                      weatherEndpoint: '/forecast',
                      units: 'metric',
                      updateInterval: 180000,
                      timeFormat: 12,
                      degreeLabel: true,
                      colored: true,
                      fade: false,
                      roundTemp: true,
                      showPrecipitationAmount: true,
                      appendLocationNameToHeader: false,
                      initialLoadDelay: 5000,
                      lat: XX, // your latitude
                      lon: XX, // your longitude
                  }
      	    },  
      
      posted in Troubleshooting
      C
      chanster
    • RE: MMM-SleepWake turn off but not turn on

      @krosamont said in MMM-SleepWake turn off but not turn on:

      Hello @chanster,
      How do you run your magic mirror project please?

      I have a script that starts Motion whenever my Rpi restarts :

      #!/bin/bash
      cd /home/pi/.motion/
      sudo motion &
      

      You need to make sure that you are running Motion in the directory where it installed ie “.motion”. If you start motion outside of this directory, it’ll use a generic motion config not your config in the “.motion” directory.

      If Motion is detecting motion properly, you see lines like these in your motion log :

      motion_detected: Motion detected - starting event 1
      mlp_actions: End of event 1
      event_newfile: File of type 8 saved to: /home/pi/Pictures/motion/02-20210109005258.mkv
      

      The directory where these files are being saved to is what you define in your motion config. Look in that folder to make sure you have files showing up there. If you don’t see any files being saved in that directory, it means Motion is not using your motion config but the generic motion config. Refer to my bolded comments above.

      Hopefully this helps.

      posted in Troubleshooting
      C
      chanster
    • RE: MMM-MyStandings

      Love this module ! Instead of grouping by divisions, is there a way group by conference instead for NBA?

      posted in Sport
      C
      chanster
    • RE: MagicMirror by Luc3as

      Very post ! Can you please share with MM modules you have used ?

      posted in Show your Mirror
      C
      chanster
    • RE: disable the header in the Weather Forecast module

      @ftap Have you tried adding “appendLocationNameToHeader: false” to the config block ?

             {
                  module: "weather",
                  position: "top_left",
                  config: {
                      type: 'forecast',
                      weatherProvider: "openweathermap",
                      weatherEndpoint: "/onecall",
                      apiKey: "***", // your OpenWeatherMap API key
                      windUnits: "imperial",
                      updateInterval: 180000,
                      timeFormat: 12,
                      showPeriod: true,
                      showHumidity: true,
                      degreeLabel: true,
                      colored: true,
                      fade: false,
                      roundTemp: true,
                      showPrecipitationAmount: true,
                      appendLocationNameToHeader: false,
                      lat: ***, // your latitude
                      lon: ***, // your longitude
                  }
                  }, 
      
      
      posted in Custom CSS
      C
      chanster
    • RE: Help with MMM-SleepWake

      @sdetweil said in Help with MMM-SleepWake:

      @chanster ok, my module doc gives u the new lines for motion.conf

      Yes, nothing wrong with your docs at all.

      posted in Troubleshooting
      C
      chanster
    • RE: Help with MMM-SleepWake

      @sdetweil It was in the sample config file for Motion. It’s a rookie mistake that I should have replaced “value” and not merely append to this line :

      # Command to be executed when an event starts. (default: none)
      # An event starts at first motion detected after a period of no motion defined by event_gap
      ; on_event_start value
      
      # Command to be executed when an event ends after a period of no motion
      # (default: none). The period of no motion is defined by option event_gap.
      ; on_event_end value
      
      posted in Troubleshooting
      C
      chanster
    • RE: Help with MMM-SleepWake

      @sdetweil Thank you !! I’m so stupid. Removing “value” did the trick ! Thank you for this module. Works perfectly.

      posted in Troubleshooting
      C
      chanster