<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-MyGarbage]]></title><description><![CDATA[<h1>MMM-MyGarbage</h1>
<p dir="auto">This a module for <a href="https://github.com/MichMich/MagicMirror" target="_blank" rel="noopener noreferrer nofollow ugc">MagicMirror²</a>.<br />
This displays the schedule for your Garbage pickup. It supports multiple types of garbage bins.<br />
You can show the schedule using a CSV file (garbage_schedule.csv) of by using an ical URL.</p>
<p dir="auto"><img width="402" height="218" alt="SCR-20260308-ppuu" src="https://github.com/user-attachments/assets/f1ae93b7-1bfe-4d1f-94d9-fed3b2f5ab3a" /><br /></p>
<h2>Installation</h2>
<p dir="auto">Clone this repository in your modules folder, and install dependencies:</p>
<pre><code>cd ~/MagicMirror/modules 
git clone https://github.com/htilburgs/MMM-MyGarbage.git
cd MMM-MyGarbage
npm install 
</code></pre>
<h2>Update</h2>
<p dir="auto">When you need to update this module:</p>
<pre><code>cd ~/MagicMirror/modules/MMM-MyGarbage
git pull
npm install
</code></pre>
<h2>Configuration</h2>
<p dir="auto">Go to the MagicMirror/config directory and edit the config.js file.<br />
Add the module to your modules array in your config.js.</p>
<pre><code>{
        module: 'MMM-MyGarbage',
        position: 'top_right',
        header: "My Garbage Calendar",
        disabled: false,
        config: {
                weeksToDisplay: 4,
                limitTo: 99,
                dateFormat: "dddd LL",
                alert: true,
                alertThreshold: 5, 
                fade:true,
                fadePoint: 0.25,
                dataSource: "csv",                          // csv (schedule_garbage.csv | ical (put URL in icalUrl)
                icalUrl: "PLACE_HERE_PUBLIC_ICAL_URL",      // only used if dataSource is "ical"
                debug: false,                               // Only set on true for debugging 
                binColors: {                                // Define custom Bin Colors and match with the Bin Names
                            "GreenBin" : "#00A651",
                            "PaperBin" : "#0059FF",
                            "GarbageBin" : "#787878",
                            "PMDBin" : "#FFFF00",
                            "OtherBin" : "#B87333"
                            },
                }
},
</code></pre>
<h2>Module configuration</h2>
<p dir="auto">Here is the documentation of options for the modules configuration:</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th style="text-align:left">Option</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left"><code>weeksToDisplay</code></td>
<td style="text-align:left">How many weeks into the future to show collection dates.<br /><br /><b>Number</b><br />Default: <code>2</code></td>
</tr>
<tr>
<td style="text-align:left"><code>limitTo</code></td>
<td style="text-align:left">Limit the display to the spcified number of pickups<br /><br /><b>Number</b><br />Default: <code>99</code></td>
</tr>
<tr>
<td style="text-align:left"><code>dateFormat</code></td>
<td style="text-align:left">Format to use for the date of events <br /><br /><b>Default:</b> <code>dddd D MMMM</code> (e.g. January 18)<br /><b>Possible values: </b>See <a href="https://momentjs.com/" target="_blank" rel="noopener noreferrer nofollow ugc">https://momentjs.com/</a></td>
</tr>
<tr>
<td style="text-align:left"><code>alert</code></td>
<td style="text-align:left">Show alert, if remaining entries in CSV file fall under threshold<br /><br /><b>Default: </b><code>false</code><br /><b>Possible values: </b><code>true</code> or <code>false</code></td>
</tr>
<tr>
<td style="text-align:left"><code>alertThreshold</code></td>
<td style="text-align:left">(optional) Threshold entries left in CSV file<br /><br /><b>Number</b><br />Default: <code>5</code></td>
</tr>
<tr>
<td style="text-align:left"><code>fade</code></td>
<td style="text-align:left">Fade the future events to black. (Gradient).<br /><br /><b>Default: </b><code>true</code><br />&lt;<b>Possible values: </b><code>true</code> or <code>false</code></td>
</tr>
<tr>
<td style="text-align:left"><code>fadePoint</code></td>
<td style="text-align:left">Where to start fade <br /><br /><b>Default: </b><code>0.25</code><br /><b>Posibble values: </b>Between <code>0</code> (top of the list) and <code>1</code> (bottom of list)</td>
</tr>
<tr>
<td style="text-align:left"><code>dataSource</code></td>
<td style="text-align:left">Select the datasource you’re using<br /><br /><b>Default: </b><code>csv</code><br /><b>Possible values: </b><code>csv</code> or <code>ical</code></td>
</tr>
<tr>
<td style="text-align:left"><code>icalUrl</code></td>
<td style="text-align:left">Fill in your (public) ical URL<br />Only use in combination with dataSource: <code>ical</code></td>
</tr>
<tr>
<td style="text-align:left"><code>debug</code></td>
<td style="text-align:left">For debugging the module when failure or testing<br /><br /><b>Default: </b><code>false</code><br /><b>Possible values: </b><code>false</code> or <code>true</code></td>
</tr>
<tr>
<td style="text-align:left"><code>binColors</code></td>
<td style="text-align:left">Define your own Bin Colors - Bin names have to EXACTLY match you’re names from CSV or iCAL.</td>
</tr>
</tbody>
</table>
<h2>Creating and using your Garbage Schedule for use with dataSource CSV</h2>
<p dir="auto">You can use this module by creating your own Garbage Schedule file with the name <code>garbage_schedule.csv</code> <br /><br />
An example file <code>garbage_schedule.csv</code> is added.</p>
<p dir="auto">Create a CSV based on the following template:</p>
<pre><code>WeekStarting,GreenBin,GarbageBin,PaperBin,PMDBin,OtherBin
03/07/18,1,0,1,0,0
03/14/18,1,1,1,0,0
03/21/18,1,0,1,0,1
03/28/18,1,1,1,1,0
</code></pre>
<p dir="auto">Default there are 5 bins defined. If you need more garbage bins, simply add an extra column in the <code>garbage_schedule.csv</code> file, with the name of the extra bin. If you only need 3, then simply remove them. When the module is started, it reads the names and will try them to match to the <code>binColors</code>.<br />
As of v3.0.0 of the module you can add custom names in the CSV of rename current names. As long as you change your <code>binColors</code> in <code>config.js</code> with the correspending names, you will see the information with the correct colors.</p>
<p dir="auto"><b>Remark</b><br />
Any Bin name that is not or not correct matched with the name in binColors, will be shown as a purple bin <img width="19" height="30" alt="SCR-20260321-icps" src="https://github.com/user-attachments/assets/3c1e95f6-e307-48ee-9de8-ebd7c61d8547" /></p>
<p dir="auto">Add lines for each garbage pickup date as needed.<br />
The date format needs to be specified as <code>MM/DD/YY</code> (e.g.: 05/28/18 for 28-May-2018)<br />
Colors can be defined in the config.js file:</p>
<ul>
<li>Legacy Values:
<ul>
<li>GreenBin (defaults to #00A651)</li>
<li>GarbageBin (defaults to #787878)</li>
<li>PaperBin (defaults to #0059ff)</li>
<li>PMDBin (defaults to #ffff00)</li>
<li>OtherBin (defaults to #F542CE)</li>
</ul>
</li>
<li>Any CSS color string (red, chocolate, cornflowerblue, etc…)</li>
<li>Any HEX-Color (#FF0000, #8c8c8c, etc)</li>
<li>Any rgb, rgba or hsl value <strong>if in double quotes</strong> (“rgb(128,65,98)”, “rgba(134,56,32,0.5)”, “hsl(0, 100%, 50%)”, etc.)</li>
</ul>
<p dir="auto">The following is <strong>VERY</strong> important:</p>
<ul>
<li>The CSV file <strong>MUST</strong> be delimited using commas</li>
<li>The date format <strong>MUST</strong> to be specified as <code>MM/DD/YY</code> (e.g.: 05/28/18 for 28-May-2018)</li>
<li>The remaining fields of each line specify whether the particular waste product is scheduled to be picked up on the given date. A value of <code>0</code> means no pick up. A value of ANYTHING ELSE means the product will be picked up.  Using the first pick up date entry in the template above, <code>1,0,1,0,0</code> means that <code>green</code> and <code>blue</code> will be picked up on that date, while the others will not be picked up.</li>
</ul>
<p dir="auto">Save the file as <code>garbage_schedule.csv</code> in the <code>MMM-MyGarbage</code> directory and restart Magic Mirror²</p>
<h2>License</h2>
<h3>The MIT License (MIT)</h3>
<p dir="auto">Copyright © 2019-2026 Harm Tilburgs</p>
<p dir="auto">Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
<p dir="auto">The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
<p dir="auto">The software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.</p>
<h4>Note</h4>
<p dir="auto">The original script is from Jeff Clarke <code>MMM-MyWastePickup</code> and only for the Toronto area.<br />
Now it has become a general script, to use in all areas all over the world.</p>
<h2>Versions</h2>
<h4>v3.1.1 (28-03-2026)</h4>
<ul>
<li>list itemFix weeksToDisplay For example: 2 weeks are 14 days so this could end up showing 3 weeks. Now fixed to ISO weeks.</li>
<li>list itemNormalized all dates to ISO strings</li>
<li>Improve CSV bin filtering (avoid garbage data)</li>
</ul>
<h4>v3.1.0 (21-03-2026)</h4>
<ul>
<li>Add support for combined multiple same day pickups into 1 ICS event (thanks to @PlatinumPenguin)</li>
<li>Clean up code to prevent crashes</li>
</ul>
<h4>v3.0.0 (07-03-2026)</h4>
<ul>
<li>Add support for flexible numbers of Bins</li>
<li>Bin names are automaticly detected</li>
<li>Match bin colors to bin names for csv and ical</li>
<li>Error message instead of “Loading…” when the CSV or ICAL is in wrong format</li>
<li>Better debug information in console and in module</li>
<li>Clean up code</li>
</ul>
<h4>v2.1.2 (02-03-2026)</h4>
<ul>
<li>Update for rare AxiosError [AggregateError] when loading iCal</li>
</ul>
<h4>v2.1.1 (17-02-2026)</h4>
<ul>
<li>Bugfix for the <code>alertTreshold</code></li>
</ul>
<h4>v2.1.0 (16-02-2026)</h4>
<ul>
<li>Update for CSV file and <code>alertThreshold</code> (add to config.js!)</li>
</ul>
<h4>v2.0.1 (2025)</h4>
<ul>
<li>Update for Streamline date parsing and allow for recurring events in ical (thx to <a class="plugin-mentions-user plugin-mentions-a" href="/user/thepagan" aria-label="Profile: thepagan">@<bdi>thepagan</bdi></a>)</li>
</ul>
<h4>v2.0.0 (2025)</h4>
<ul>
<li>Changed for use with CSV or with iCal Calendar</li>
</ul>
<h4>v1.0.0 (Initial Release 2019)</h4>
]]></description><link>https://forum.magicmirror.builders/topic/9929/mmm-mygarbage</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Apr 2026 10:01:33 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/9929.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 01 Mar 2019 15:51:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-MyGarbage on Sun, 29 Mar 2026 07:11:07 GMT]]></title><description><![CDATA[<p dir="auto">Published update to V3.1.1</p>
<ul>
<li>list itemFix weeksToDisplay For example: 2 weeks are 14 days so this could end up showing 3 weeks. Now fixed to ISO weeks.</li>
<li>list itemNormalized all dates to ISO strings</li>
<li>list itemImprove CSV bin filtering (avoid garbage data)</li>
</ul>
]]></description><link>https://forum.magicmirror.builders/post/130529</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/130529</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Sun, 29 Mar 2026 07:11:07 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Sat, 21 Mar 2026 07:58:43 GMT]]></title><description><![CDATA[<p dir="auto">Just published an update v3.1.0</p>
<ul>
<li>Add support for combined multiple same day pickups into 1 ICS event (thanks to @PlatinumPenguin)</li>
<li>Clean up code to prevent crashes</li>
</ul>
]]></description><link>https://forum.magicmirror.builders/post/130459</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/130459</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Sat, 21 Mar 2026 07:58:43 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Tue, 10 Mar 2026 21:50:00 GMT]]></title><description><![CDATA[<p dir="auto">Just published an update v3.0.0</p>
<ul>
<li>Add support for flexible numbers of Bins</li>
<li>Bin names are automaticly detected</li>
<li>Match bin colors to bin names for csv and ical</li>
<li>Error message instead of “Loading…” when the CSV or ICAL is in wrong format</li>
<li>Better debug information in console and in module</li>
<li>Clean up code</li>
</ul>
<p dir="auto">Enjoy this new version and if you find any issues, please report them <a href="https://github.com/htilburgs/MMM-MyGarbage/issues" target="_blank" rel="noopener noreferrer nofollow ugc">here</a></p>
]]></description><link>https://forum.magicmirror.builders/post/130338</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/130338</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Tue, 10 Mar 2026 21:50:00 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Mon, 02 Mar 2026 19:22:19 GMT]]></title><description><![CDATA[<p dir="auto">Just published an update:</p>
<p dir="auto">2.0.1 : Update for Streamline date parsing and allow for recurring events in ical (thx to <a class="plugin-mentions-user plugin-mentions-a" href="/user/thepagan" aria-label="Profile: thepagan">@<bdi>thepagan</bdi></a>)<br />
2.1.0 : Update for CSV file and alertThreshold (add to your config.js!)<br />
2.1.1 : bugfix for the alertThreshold<br />
2.1.2 : Update for rare AxiosError [AggregateError] when loading iCal</p>
]]></description><link>https://forum.magicmirror.builders/post/130211</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/130211</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Mon, 02 Mar 2026 19:22:19 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Sun, 25 Jan 2026 17:19:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mickecarlsson" aria-label="Profile: mickecarlsson">@<bdi>mickecarlsson</bdi></a><br />
That is the risk of editing the .js file. ;-)<br />
I’m glad you remembered and that you have corrected it.<br />
Have fun!</p>
]]></description><link>https://forum.magicmirror.builders/post/129802</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/129802</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Sun, 25 Jan 2026 17:19:37 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Sun, 25 Jan 2026 15:36:34 GMT]]></title><description><![CDATA[<p dir="auto">@htHilburgs</p>
<p dir="auto">Just did the upgrade, did not work until I remembered I had done some tweaking in the MMM-MyGarbage.js so that I could name the bins as per my use. I had named them Fyrfack1, Fyrfack2 and Tradgard.<br />
I just reversed that to the default names in the csv-file and modified my config to set up the colors I use.<br />
My config.js section:</p>
<pre><code>            {
                module: 'MMM-MyGarbage',
                position: 'top_left',
                header: 'Sophämtning',
                config: {
                    weeksToDisplay: '3',
                    binColors: {          // Define custom Bin Colors
                        GreenBin: "#8B4513",
                        PaperBin: "#0000FF",
                        GarbageBin: "#008000",
                        },
               }
            },```
Now the module is just works like the old one. 
Thanks for the update.</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/129801</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/129801</guid><dc:creator><![CDATA[mickecarlsson]]></dc:creator><pubDate>Sun, 25 Jan 2026 15:36:34 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Sun, 25 Jan 2026 12:09:12 GMT]]></title><description><![CDATA[<p dir="auto">Today I published an updated version (v2.0.0) with CSV and iCal support.<br />
Everything has been thoroughly tested, but if you encounter any issues despite this, please let me know.</p>
<p dir="auto"><a href="https://github.com/htilburgs/MMM-MyGarbage/issues" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/htilburgs/MMM-MyGarbage/issues</a></p>
]]></description><link>https://forum.magicmirror.builders/post/129797</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/129797</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Sun, 25 Jan 2026 12:09:12 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Mon, 16 Jan 2023 09:15:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wwats" aria-label="Profile: wwats">@<bdi>wwats</bdi></a><br />
Check that ypu only have 1 (one) extra line at the end of the CSV-file, if you have more than one, the module crashes</p>
]]></description><link>https://forum.magicmirror.builders/post/107325</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107325</guid><dc:creator><![CDATA[mickecarlsson]]></dc:creator><pubDate>Mon, 16 Jan 2023 09:15:48 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Sat, 14 Jan 2023 14:34:12 GMT]]></title><description><![CDATA[<p dir="auto">Hello, i have the same problem… there is loading and loading again… thanks for Your answer</p>
]]></description><link>https://forum.magicmirror.builders/post/107242</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107242</guid><dc:creator><![CDATA[wwats]]></dc:creator><pubDate>Sat, 14 Jan 2023 14:34:12 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Tue, 03 Jan 2023 18:38:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sifuhall" aria-label="Profile: sifuhall">@<bdi>sifuhall</bdi></a></p>
<p dir="auto">I Will have to look in it. Today I have no time.<br />
I come back tomorrow.</p>
]]></description><link>https://forum.magicmirror.builders/post/106887</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/106887</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Tue, 03 Jan 2023 18:38:36 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Tue, 03 Jan 2023 18:03:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/htilburgs" aria-label="Profile: htilburgs">@<bdi>htilburgs</bdi></a> I did, yes.</p>
]]></description><link>https://forum.magicmirror.builders/post/106877</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/106877</guid><dc:creator><![CDATA[sifuhall]]></dc:creator><pubDate>Tue, 03 Jan 2023 18:03:07 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Tue, 03 Jan 2023 17:56:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sifuhall" aria-label="Profile: sifuhall">@<bdi>sifuhall</bdi></a></p>
<p dir="auto">Did you ran ‘npm install’ afterwards?<br />
You have to run this in the MMM-MyGarbage directory.</p>
]]></description><link>https://forum.magicmirror.builders/post/106875</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/106875</guid><dc:creator><![CDATA[htilburgs]]></dc:creator><pubDate>Tue, 03 Jan 2023 17:56:50 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Tue, 03 Jan 2023 11:48:59 GMT]]></title><description><![CDATA[<p dir="auto">I just updated my MMM-MyGarbage module today and it is no longer working.  I only get “Loading …”.</p>
<p dir="auto">Does anyone else have this issue or any ideas?  Nothing has changed on myside other than the update.</p>
]]></description><link>https://forum.magicmirror.builders/post/106867</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/106867</guid><dc:creator><![CDATA[sifuhall]]></dc:creator><pubDate>Tue, 03 Jan 2023 11:48:59 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Thu, 18 Nov 2021 09:55:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dinschal" aria-label="Profile: dinschal">@<bdi>dinschal</bdi></a> das Datum in der CSV kann man nicht umstellen. Für heute, den 18. November, muss es so aussehen: 11/18/2021 Der MM ist auf deutsches Datumsformat eingestellt.</p>
<p dir="auto">Den Kalendar der Stadtverwaltung habe ich mit <a href="https://www.indigoblue.eu/ics2csv/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.indigoblue.eu/ics2csv/</a> konvertiert. Die Häkchen bei Notes und Location nehme ich immer raus. Danach wird die CSV mit OpenOffice bearbeitet. Das schaut am Ende dann so aus:</p>
<pre><code>WeekStarting,SaddleBrown,Black,Gold,DarkBlue,Red
11/16/21,0,0,1,0,0
11/20/21,1,0,0,0,0
11/25/21,0,1,0,0,0
11/26/21,1,0,0,1,0
11/30/21,0,0,1,0,0
12/03/21,1,0,0,0,0
12/09/21,0,1,0,0,0
12/10/21,1,0,0,1,0
12/14/21,0,0,1,0,0
12/17/21,1,0,0,0,0
12/23/21,0,1,0,0,0
12/24/21,1,0,0,1,0
12/26/21,0,0,0,0,1
12/28/21,0,0,1,0,0
12/31/21,1,0,0,0,0
</code></pre>
<p dir="auto">Die rote Mülltonne ist für mich die Erinnerung, einen neuen Kalender für das kommende Jahr zu erstellen.</p>
<p dir="auto">Hier noch meine Zeilen aus der config.js</p>
<pre><code>		{
			module: "MMM-MyGarbage",
			position: "top_left",
			header: "Abfallkalender",
			config: {
				// alert: 4,
				weeksToDisplay: 2,
				limitTo: 3,
				fade: true,
				fadePoint: 0.05,
				dateFormat: "dddd, D. MMMM"
			}
		},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/96502</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96502</guid><dc:creator><![CDATA[MacG]]></dc:creator><pubDate>Thu, 18 Nov 2021 09:55:04 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Wed, 10 Nov 2021 12:21:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/macg" aria-label="Profile: MacG">@<bdi>MacG</bdi></a> okay ich bin zu doof das modul zum laufen zu bekommen. Bei mir steht permanent laden da… ich hab die csv schon erstellt und die daten da auch eingetragen… hast du die datumsanzeige auf deutsch umgestellt???</p>
]]></description><link>https://forum.magicmirror.builders/post/96210</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96210</guid><dc:creator><![CDATA[Dinschal]]></dc:creator><pubDate>Wed, 10 Nov 2021 12:21:09 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Wed, 10 Nov 2021 10:50:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/macg" aria-label="Profile: macg">@<bdi>macg</bdi></a> okay, dann muss ich mal schauen, ob unsere zaw das auch hat… danke für den tipp</p>
<p dir="auto">hab grad gesehen, dass es die bei uns nur als ical bzw als pdf in kalenderform gibt… wäre schön, wenn man die ical variante mit in das modul einbinden könnte :)</p>
]]></description><link>https://forum.magicmirror.builders/post/96204</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96204</guid><dc:creator><![CDATA[Dinschal]]></dc:creator><pubDate>Wed, 10 Nov 2021 10:50:37 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Wed, 10 Nov 2021 09:10:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dinschal" aria-label="Profile: dinschal">@<bdi>dinschal</bdi></a> Ich lade mir die Termine bei der Stadtreinigung runter und bearbeite die Liste noch mit Office (wegen dem benötigten Format).</p>
<p dir="auto">I download the dates from the city cleaning and still edit the list with Office (because of the required format).</p>
]]></description><link>https://forum.magicmirror.builders/post/96201</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96201</guid><dc:creator><![CDATA[MacG]]></dc:creator><pubDate>Wed, 10 Nov 2021 09:10:17 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Tue, 09 Nov 2021 19:26:21 GMT]]></title><description><![CDATA[<p dir="auto">Hey ich würde gerne dein Modul nutzen, ist es möglich, dass man eine Wiederholung einbaut zB alle 14 Tage, dann würde man es sich sparen so ne lange liste mit Abholtagen anzulegen.</p>
<p dir="auto">LG</p>
]]></description><link>https://forum.magicmirror.builders/post/96174</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96174</guid><dc:creator><![CDATA[Dinschal]]></dc:creator><pubDate>Tue, 09 Nov 2021 19:26:21 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Fri, 29 Oct 2021 16:09:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jerryp" aria-label="Profile: jerryp">@<bdi>jerryp</bdi></a> hi is it possible to change the name of the trash can?</p>
]]></description><link>https://forum.magicmirror.builders/post/95844</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/95844</guid><dc:creator><![CDATA[Stoffbeuteluwe]]></dc:creator><pubDate>Fri, 29 Oct 2021 16:09:10 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Tue, 26 Oct 2021 00:37:42 GMT]]></title><description><![CDATA[<p dir="auto">Is it possible to import my existing schedule from Google Calendar?</p>
<h2>Existing Calendar:</h2>
<p dir="auto"><img src="/assets/uploads/files/1635208657518-a3f255b3-3383-4433-8937-7f9032cd29e2-image.png" alt="a3f255b3-3383-4433-8937-7f9032cd29e2-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/95787</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/95787</guid><dc:creator><![CDATA[Coolie1101]]></dc:creator><pubDate>Tue, 26 Oct 2021 00:37:42 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Wed, 16 Dec 2020 19:44:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jerryp" aria-label="Profile: JerryP">@<bdi>JerryP</bdi></a> , it’s working now correctly. this is the most useful module i have ever seen. Thank you for your help and your great work.</p>
]]></description><link>https://forum.magicmirror.builders/post/85817</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/85817</guid><dc:creator><![CDATA[levente82]]></dc:creator><pubDate>Wed, 16 Dec 2020 19:44:13 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Wed, 16 Dec 2020 19:18:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/levente82" aria-label="Profile: levente82">@<bdi>levente82</bdi></a><br />
The Problem is solved… a corrupt or bad CVS file was the problem.<br />
And the config file a small chance dateFormat: “dddd D MMMM” instead of "dateFormat: “MM/DD/YY”  :) :)</p>
<p dir="auto">So maybe <a class="plugin-mentions-user plugin-mentions-a" href="/user/crush" aria-label="Profile: crush">@<bdi>crush</bdi></a> i’t for you also the issue :)</p>
]]></description><link>https://forum.magicmirror.builders/post/85815</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/85815</guid><dc:creator><![CDATA[JerryP]]></dc:creator><pubDate>Wed, 16 Dec 2020 19:18:18 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Tue, 15 Dec 2020 12:18:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/crush" aria-label="Profile: crush">@<bdi>crush</bdi></a> , same problem here. I don’t know if the MMM-Remote-Control module is the problem or not, but i made everything according to description and the module always showing “Loading…”.</p>
]]></description><link>https://forum.magicmirror.builders/post/85774</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/85774</guid><dc:creator><![CDATA[levente82]]></dc:creator><pubDate>Tue, 15 Dec 2020 12:18:37 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-MyGarbage on Sun, 13 Dec 2020 09:44:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rkvant" aria-label="Profile: rkvant">@<bdi>rkvant</bdi></a></p>
<p dir="auto">edit: /home/pi/MagicMirror/modules/MMM-MyGarbage/garbage_schedule.csv<br />
your must edit i’t on de mirror self. not bij Excel or notepad</p>
<p dir="auto">and i’t looks like this</p>
<p dir="auto">WeekStarting,green,gray,blue,orange<br />
11/18/20,0,1,0,1<br />
11/25/20,1,0,0,0<br />
12/02/20,0,1,0,0<br />
12/09/20,1,0,0,0<br />
12/16/20,0,1,0,1<br />
12/23/20,1,0,0,0<br />
12/30/20,0,1,0,0<br />
01/06/21,1,0,0,0<br />
01/13/21,0,1,0,1<br />
01/20/21,1,0,0,0<br />
01/27/21,0,1,0,0<br />
02/03/21,1,0,0,0<br />
02/10/21,0,1,0,1<br />
02/17/21,1,0,0,0</p>
<p dir="auto">I’m from holland so sorry for my bad English</p>
]]></description><link>https://forum.magicmirror.builders/post/85702</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/85702</guid><dc:creator><![CDATA[JerryP]]></dc:creator><pubDate>Sun, 13 Dec 2020 09:44:25 GMT</pubDate></item></channel></rss>