Read the statement by Michael Teeuw here.
MMM-DumpsterDay
-
@dinschal Hey there, it’s not possible to set it via config right now, but it’s quite easy to modify it in the MMM-DumpsterDay.js file:
Find folloing code (about row 167)
// Trashday today
if (difference%datediff_1 == 0) {
result = 1
Log.info(“It’s trashday !!”);
}and change the value of result to 0.
So it’s:// Trashday today
if (difference%datediff_1 == 0) {
result = 0
Log.info(“It’s trashday !!”);
}Please let me know if this solution worked as desired.
Have a good one; Greetings from Czechia. -
I have been working on scaling the use of this great module. I thought about what other reoccurring things that I might need notification of. It came to mind that my front loading Washing Machine indicates that I need to clean the pump screen every 30 days! I also like to do a “tub clean” at about the same interval.
The washer has a setting that is named “tub clean” where one adds a bit of bleach or other detergent made for cleaning the inside of the stainless tub to make sure that there is not any bacteria and gunk that builds up.In that vein I created a custom icon that can be used for notification. I wanted to share it with the community in case anyone else wanted to be notified as well.
Since I dont use the Recycle Can I just substituted this icon for the Recycle Can and set the reoccurring notification to be every 30 days!! Click the link and then Right Click - Save Image As
TubClean.png -
@BD0G awesome mate! So glad the module is used :)