MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-MyGarbage

    Scheduled Pinned Locked Moved Utilities
    59 Posts 28 Posters 40.5k Views 28 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • htilburgsH Offline
      htilburgs
      last edited by

      @pugsly
      This is possible, follow the next steps.

      Go to the MagicMirror CSS directory

      cd ~\MagicMirror\css\
      

      Edit (or create) the custom.css file

      sudo nano custom.css
      

      Add the next section at the bottom of the custom.css file

      /* MMM-MyGarbage CSS Modification */
      .MMM-MyGarbage .garbage-container .garbage-icon-container .garbage-icon.greenbin {
        fill: #00A651;
      }
      .MMM-MyGarbage .garbage-container .garbage-icon-container .garbage-icon.garbagebin {
        fill: #787878;
      }
      .MMM-MyGarbage .garbage-container .garbage-icon-container .garbage-icon.paperbin {
        fill: #0059ff;
      }
      /* End MMM-MyGarbage */
      

      Now you can modify the colors for your Garbage Bins. In your case, you would like the grey bin to be yellow. The code should be:

      .MMM-MyGarbage .garbage-container .garbage-icon-container .garbage-icon.garbagebin {
        fill: #fffa00;
      }
      

      Save and quit the nano editor and restart your MagicMirror.
      Now you should have a yellow trashbin instead of a grey trashbin.
      Succes!

      (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

      L 1 Reply Last reply Reply Quote 0
      • Z Offline
        Zwirbel
        last edited by

        Do you know if it is also possible to change the icon with CSS? E.g. using a “paper” icon from FontAwesome?

        1 Reply Last reply Reply Quote 0
        • htilburgsH Offline
          htilburgs
          last edited by

          Currently this is not possible, because the icons are embedded in file ‘garbage_icons.svg’. You can create you’re own garbage_icons.svg file. Keep in mind that the icons are 24x24 pixels.

          (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

          1 Reply Last reply Reply Quote 0
          • C Offline
            Chris62
            last edited by

            @htilburgs

            Hi,

            I would really like to use this module. However, despite following the install instructions, and without changing any of the defaults other than the header (we usually say rubbish in the UK, rather than garbage), I get two instances of the module loading. Also, when I open the default csv file in Excel for instance, the dates do not all seem to be the same. Some are formatted left and some are formatted right in the cell. Surely they should all be the same. I have not altered this file at all but when the module loads in MM2, (twice as mentioned) I just get an entry for ‘Today’ and a grey bin icon.

            Chris

            htilburgsH 1 Reply Last reply Reply Quote 0
            • htilburgsH Offline
              htilburgs @Chris62
              last edited by

              @Chris62 can you post a picture and the config.js?

              (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

              1 Reply Last reply Reply Quote 0
              • W Offline
                werffje
                last edited by

                I have done everything as described but the module keeps on indicating Loading Loading, what am I doing wrong?

                Regards, Marius

                htilburgsH 1 Reply Last reply Reply Quote 0
                • htilburgsH Offline
                  htilburgs @werffje
                  last edited by

                  @werffje I’m sorry to hear that, but if it’a keep saying loading, than there is a configuration error. Can you post your config. js.
                  Further take a look at the java console in you browser if you can see an error.

                  (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                  1 Reply Last reply Reply Quote 0
                  • htilburgsH Offline
                    htilburgs
                    last edited by htilburgs

                    On my TEST System, I just did a fresh install of MM2 and after that a fresh install of MMM-MyGarbage. Copy and Paste the configuration as in the README.md into the config.js and no errors. MMM-MyGarbage displays 2 entries with the garbage_schedule.csv that is installed with the git clone…

                    @Chris62, @werffje, if you still expirience problems, than:

                    • add config.js into reply
                    • look at the javascript console if you see any errors in the Console tab

                    Open Javascript Console:
                    Press Command+Option+J (Mac) or Control+Shift+J (Windows, Linux, Chrome OS) to open the Console

                    • any other information that maybe relevant

                    I’ll look at it and try to reproduce and/or correct the issue.

                    (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                    1 Reply Last reply Reply Quote 0
                    • C Offline
                      Chris62
                      last edited by

                      Hi,

                      Thanks for your reply. I have fixed it now. I loaded the csv file into excel to alter the dates but something was wrong with the formatting and I just couldn’t get it to work. Anyway, I loaded up MM into a Ubuntu virtual machine and changed the dates in notepad. I sorted out the config issue (I moved the position within the config file to make it easier to read but accidentally did copy rather than cut and paste so I had two loading), fired it up and it worked like a charm. I have now copied everything to my Pi and it now works there too.

                      Just a quick question, I only have two bins, blue and green, is it possible to remove the column for the other one without mucking it up, or should I just set all the values to zero?

                      Thanks

                      Chris

                      htilburgsH 1 Reply Last reply Reply Quote 0
                      • htilburgsH Offline
                        htilburgs @Chris62
                        last edited by

                        @Chris62 Good to hear it’s fixed.
                        You can do both

                        • Remove the unused column entirly
                        • Fill the unused column with zero’s

                        As of version v1.2.0 you can also use you’re own column names, as long as they are color names. The garbage bin is showed in the color of the name of the column.

                        example
                        WeekStarting,Green,Brown
                        04/15/19,1,1

                        0_1555064642027_MMM-MyGarbage-colors.png

                        (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                        1 Reply Last reply Reply Quote 1
                        • W Offline
                          werffje
                          last edited by

                          OMG I’m such a noob forgive me, I forgot the alert: 4 line in my config.js

                          It works great now, thanks !!

                          htilburgsH 1 Reply Last reply Reply Quote 0
                          • htilburgsH Offline
                            htilburgs @werffje
                            last edited by

                            @werffje :thumbs_up_light_skin_tone:

                            (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                            1 Reply Last reply Reply Quote 0
                            • R Offline
                              rvanuden
                              last edited by

                              best module ever :-)

                              htilburgsH 1 Reply Last reply Reply Quote 0
                              • htilburgsH Offline
                                htilburgs @rvanuden
                                last edited by

                                @rvanuden :hugging_face: :thumbs_up_light_skin_tone:

                                (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                                1 Reply Last reply Reply Quote 0
                                • R Offline
                                  RdP
                                  last edited by

                                  Hi,

                                  We have 4 garbage bins. (Green,Black, Bleu and Yellow), is it possible to use 4 types instead of 3?

                                  htilburgsH 1 Reply Last reply Reply Quote 0
                                  • htilburgsH Offline
                                    htilburgs @RdP
                                    last edited by

                                    @RdP
                                    You can use this module by creating your own Garbage Schedule file with the name garbage_schedule.csv An example file garbage_schedule.csv is added.

                                    Create a CSV based on the following template:

                                    WeekStarting,green,gray,blue
                                    03/07/18,1,0,1
                                    03/14/18,1,1,1
                                    03/21/18,1,0,1
                                    03/28/18,1,1,1

                                    Default there are 3 bins defined (green, gray and blue) If you need more garbage bins, simply add an extra column in the garbage_schedule.csv file. The name is the color you like the bin to have. In you case ‘yellow’.

                                    Add lines for each garbage pickup date as needed. The date format needs to be specified as MM/DD/YY (e.g.: 05/28/18 for 28-May-2018)

                                    Succes!

                                    (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                                    R 1 Reply Last reply Reply Quote 0
                                    • R Offline
                                      RdP @htilburgs
                                      last edited by

                                      @htilburgs

                                      Yes works like a charm…

                                      Thank you

                                      htilburgsH 1 Reply Last reply Reply Quote 0
                                      • htilburgsH Offline
                                        htilburgs @RdP
                                        last edited by

                                        @RdP, great it worked out for you!

                                        (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                                        1 Reply Last reply Reply Quote 0
                                        • twosquirrelsT Offline
                                          twosquirrels
                                          last edited by

                                          This is great! It’s since replaced MMM-MyWastePickup as that no longer works .

                                          1 Reply Last reply Reply Quote 0
                                          • M Offline
                                            mistered
                                            last edited by

                                            Hi guys i know this is an old topic but maybe i can get an answer anayway

                                            i want 4 bins but just adding a color and and a 1 or 0 in the csv file does not work

                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 1 / 3
                                            • First post
                                              Last post
                                            Enjoying MagicMirror? Please consider a donation!
                                            MagicMirror created by Michael Teeuw.
                                            Forum managed by Sam, technical setup by Karsten.
                                            This forum is using NodeBB as its core | Contributors
                                            Contact | Privacy Policy