Read the statement by Michael Teeuw here.
MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast
-
There is only one property that is used for both sunrise and sunset:
label_sunriseTimeFormat
. In your example above, you’ve specifiedhh:mm
for this property, which displays 12h time, not 24h time.Change your config from this:
iconset: "3c", label_hourlyTimeFormat: "k[ Uhr]", label_sunriseTimeFormat: "hh:mm", label_sunsetTimeFormat: "k:mm", label_days: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]
to this:
iconset: "3c", label_hourlyTimeFormat: "k[ Uhr]", label_sunriseTimeFormat: "k:mm", // change the format for this one label_days: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]
-
@shiryu1031 The screenshots you see in GitHub were incorrect. My old code for Dark Sky was using km/h, and I hadn’t replaced the label with m/s when I took these screen shots. So the screenshots are actually illustrating a bug! The actual speed value shown is m/s, but the label is incorrect as km/h. :beaming_face_with_smiling_eyes:
I thought about it, and it would take me just as much time to fix the screen shots as it would to add the capability to convert m/s into km/h. So now there is a new config parameter:
displayKmhForWind
. If you add this to your config and set it totrue
, m/s wind speed will be converted and displayed as km/h. This parameter only works whenunits
is set to"metric"
or"standard"
. If you’re using"imperial"
you will always see mph.Do a
git pull
in your installedMMM-OpenWeatherForecast
directory to get the updated code. -
@swvalenti I’ve made a modification that now truncates alerts to no more than 3 lines of description. This is controlled with CSS so if you’ve like to adjust this for more or less lines, you can do so in your custom CSS file as follows:
.MMM-OpenWeatherForecast .weather-alert .weather-alert-description { -webkit-line-clamp: 3; /* adjust this as desired */ }
do a
git pull
in your installedMMM-OpenWeatherForecast
directory to get the latest code. -
@j-e-f-f Thx a lot! Its working now as expected.
-
@j-e-f-f thanks bro!
-
Hello,
It is somehow possible to show the unit of measurement for the temperature (in my case, “C” for Celsius) ?
Thank you.
-
@j-e-f-f Last thing is it possible to just get the red to display and nothing else? Yea that’s right it’s FN 69 out here in NJ!
-
concerning the duplicate weather alerts and mix up between german and english I got an answer from openweathermap.org:
Currently we receive data in such format from the provider. The development team is working on the new version of alerts, which should eliminate such behavior.
-
@mielu80 said in MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast:
It is somehow possible to show the unit of measurement for the temperature (in my case, “C” for Celsius) ?
Yes. You can do that in your
custom.css
file.For the big current temperature display:
.MMM-OpenWeatherForecast .current-conditions-wrapper .current.temperature:after { content: "C"; }
In the extra current conditions Hi/Lo display:
.MMM-OpenWeatherForecast .extra-current-conditions-wrapper . temperature-container . high-temperature:after, .MMM-OpenWeatherForecast .extra-current-conditions-wrapper . temperature-container . low-temperature:after { content: "C"; }
In the hourly forecast items:
.MMM-OpenWeatherForecast .forecast-item.hourly .temperature-container:after { content: "C"; }
In the daily forecast Hi/Lo display:
.MMM-OpenWeatherForecast .forecast-item.daily .high-temperature:after, .MMM-OpenWeatherForecast .forecast-item.daily .low-temperature:after { content: "C"; }
In all of the examples above, whatever you specify for
content
will be displayed. So if you wantedF
for Fahrenheit, you would specifycontent: "F";
-
@swvalenti said in MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast:
Last thing is it possible to just get the red to display and nothing else?
Yes, you can do this in your
custom.css
file.To hide the description and alert source:
.MMM-OpenWeatherForecast .weather-alert .weather-alert-description, .MMM-OpenWeatherForecast .weather-alert .weather-alert-source { display: none; }
To change the size of the red title text:
.MMM-OpenWeatherForecast .weather-alert .weather-alert-title { font-size: 17px; /* adjust this */ }
alternatively, to change the size of the alert icon:
.MMM-OpenWeatherForecast .weather-alert { background-size: 30px 26px; /* width height */ background-position: 6px 10px; /* top left */ }
If you change the size of the icon, you may want to adjust the title padding as well:
.MMM-OpenWeatherForecast .weather-alert .weather-alert-title { padding-left: 36px; /* adjust this */ }
EVERYTHING is in this module has a CSS class applied to it so you can tailor every last little bit to your specific needs. Take a look at
MMM-OpenWeatherForecast.css
for existing CSS rules andmmm-openweather-forecast.njk
to see what classes have been applied to which UI elements.