Read the statement by Michael Teeuw here.
MMM-WeatherBackground
-
@mykle1 yeah well…
-
I’ve added configuration sample for NOAA3.
I like @cowboysdude’s forked version, but it’s images are static.
I always love random. That is why I build this module.
Fortunately, since @cowboysdude updated his NOAA3, now I can suggest a configuration for my original to use with NOAA3{ //disabled:true, module: "MMM-WeatherBackground", config: { targetDOM: ".MMM-Dummy", // < -- change to where you want to display notification: "WEATHER", payloadConverter:(payload)=>{ var n = (moment().isAfter(moment(payload.sunset))) ? "night" : "day" var iconMap = { "tstorms": "thunderstorm", "chancesnow": "snow" } var ret = (payload.icon in iconMap) ? iconMap[payload.icon] : payload.icon return ret + " " + n } } },
-
This module is supposed to be weather images, yet, I have seen exactly one image that’s weather related.
Most of the time, it’s keyboards, computer related stuff, people, etc.
Can I restrict the pictures?
-
@bkeyport
Frankly, it is not so easy, because images are the result of searching keywords in unslpash.
Ideally, https://source.unsplash.com/featured/?clouds should show the clouds - weather related image. But in unsplash, many images - not related with weather itself - might have that name “clouds” because, just photographer named as it.
I regard it as a funny random stuffs - not weather itself but something like mood or feeling.
You can adjust obvious keywords inpayloadConverter
to clearer ones. By example, In above configuration, I change “tstorms” => “thunderstorm”.Or if you are using MMM-NOAA3, Try cowboysdude’s forked version.(https://github.com/cowboysdude/MMM-WeatherBackground).
Instead getting image from unsplash, it serves prepared static image. -
It’s a great module!! Yes it’s random pictures but it’s still VERY cool because in reality the pictures returned are usually really good!!!
-
UPDATED
[2018-12-03]
- Now you can simply set
source
instead complex notification & payloadConverterMMM-DarkSkyForecast
is supported as source- Currently supported source :
currentweather
,MMM-NOAA3
,MMM-DarkSkyForecast
- Background image position is centered now.
- Now you can simply set
-
-
is this supposed to work with: MMM-OpenWeatherForecast?
and how should this behave if there is more than one instance of the same plugin configured?I see the module, and this post, are not really active, so if it is not supported (or maintained) anymore - just ignore me!
-
@0m4r
I was the original author of that module. ;)
Basically, if any module could emit any notification and it could be translated properly, it will work.
You can define your customization withpayloadConverter
andnotification
inconfig.js
notification: "SOME MODULE NOTI", payloadConverter:(payload)=>{ return "windy night spring" // <= query text for the image. }
Currently, this module is managed by brianHelper
-
@mmrize hey thanks! I figure that out myself already digging into the code!
cool module, I never really thought about using an event to customize the payload and have a function as a config value… I may play around with it a little more and come back if I have any question :)