This a module for the MagicMirror. It can display if on todays date a certain trash type is collected in Germany.
Only cities which use the MyMüll application are available with this module.
Have a look here if your city is supported.
In terminal, go to your MagicMirror's Module folder:
cd ~/MagicMirror/modules
Clone this repository:
git clone https://github.com/ChrwagnerTHU/MMM-MyMuell
In terminal, go to the Module's folder and pull the latest version from GitHub:
cd ~/MagicMirror/modules/MMM-MyMuell
git pull
Option | Default | Description |
---|---|---|
cityId |
"" | ID of the city you want to display |
areaId |
"" | ID of the area you want to display |
description |
false | Flag if further descriptions shall be displayed |
updateDataInterval |
0 | day of week when to update data (0 = Sunday) |
updateInterval |
6 * 60 * 60 * 1000 | Updating rate based on fetched data |
schedule |
[] | Days on which it is particularly important to put out the corresponding waste bin can be entered here in the YYYY-MM-DD format. |
- Look here to find your cities ID
- Look on the following link for your area ID
https://mymuell.jumomind.com/mmapp/api.php?r=streets&city_id=ID
where the ID at the end is your cities ID
To use this module, add it to the modules array in the ~/MagicMirror/config/config.js
file.
{
module: 'MMM-MyMuell',
header: "Abfuhrkalender",
position: 'top_left',
config: {
cityId: '62513',
areaId: '355'
}
},
- Michael Teeuw for creating the awesome MagicMirror2 project that made this module possible.