Love this module ! Instead of grouping by divisions, is there a way group by conference instead for NBA?
Read the statement by Michael Teeuw here.
Best posts made by chanster
-
RE: MMM-MyStandings
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?
-
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!
-
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.
{ 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 } },
-
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.
-
RE: MMM-MyStandings
Love this module ! Instead of grouping by divisions, is there a way group by conference instead for NBA?
-
RE: MagicMirror by Luc3as
Very post ! Can you please share with MM modules you have used ?
-
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 } },
-
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.
-
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
-
RE: Help with MMM-SleepWake
@sdetweil Thank you !! I’m so stupid. Removing “value” did the trick ! Thank you for this module. Works perfectly.