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-Chores - Manage and keep track of your household Chores

    Scheduled Pinned Locked Moved Utilities
    104 Posts 19 Posters 28.3k Views 20 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.
    • PierreGodeP Offline
      PierreGode Module Developer
      last edited by PierreGode

      MMM-Chores is a module for MagicMirror² that allows you to manage your household chores.
      It provides an admin interface where you can add, edit, and delete tasks. You can also set due dates and assign tasks to different persons. The module displays the tasks on your MagicMirror, allowing you to keep track of your household chores at a glance.

      77050878-9565-42c6-a774-a6df96f3bd55-image.png

      1d16bddc-eb51-41d9-addf-37028918517b-image.png
      6794ad64-f978-49f6-ab53-da55b318bd4a-image.png

      ae89adc7-7006-4488-ab45-42d8251dced5-image.png
      ---- AI option is availible and uses only data from data.json if openai api key is provided ↑

      678d5db2-0621-4056-ac30-e1c0f5378620-image.png

      cd ~/MagicMirror/modules
      git clone https://github.com/PierreGode/MMM-Chores
      cd ~/MagicMirror/modules/MMM-Chores

      npm install

      {
        module: "MMM-Chores",
        position: "bottom_right",
        header: "Chores",
        config: {
          updateInterval: 60 * 1000,
          adminPort: 5003,
          openaiApiKey: "your-openApi-key here",
          pushoverApiKey: "your-pushover-api-key",
          pushoverUser: "your-pushover-user-key",
          login: false,
          users: [
            { username: "admin", password: "secret", permission: "write" },
            { username: "viewer", password: "viewer", permission: "read" }
          ],
          settings: "unlocked", //  set a 6 digit pin like "000000" to lock settings popup with a personal pin, change 000000 to any 6 digit password you want, or comment this out to lock settings completly
      // other options can be set in the admin portal
          levelTitles: [
          // titles for every 10 levels
            "Junior",
            "Apprentice",
            "Journeyman",
            "Experienced",
            "Expert",
            "Veteran",
            "Master",
            "Grandmaster",
            "Legend",
            "Mythic"
          ]
        }
      },
      
      KristjanESPERANTOK M 2 Replies Last reply Reply Quote 1
      • KristjanESPERANTOK Offline
        KristjanESPERANTO Module Developer @PierreGode
        last edited by

        Looks really nice, especially the admin interface!

        1 Reply Last reply Reply Quote 1
        • S sdetweil referenced this topic on
        • S sdetweil referenced this topic on
        • D Offline
          dmykins
          last edited by

          I just installed this module and it shows on MagicMirro when I run the program.

          For the admin side of things, I went into public folder and opened the admin chrome file.

          I see where I can add a person and a task and I can fill out the form fields, but when I click to add another person or add the task nothing works.

          Brand new to this, literally just installed this as my first module so it may be operator error. Any help is appreciated!

          PierreGodeP 1 Reply Last reply Reply Quote 0
          • S Offline
            smfd_guy
            last edited by

            I’ve been looking for a working To Do list unsuccessfully for a while. This seems like a winner to me. Is there a way to remove the date from the task so I have more room for the task description?

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

              Thanks for this module, it’s exactly the type of thing i was looking for. Quick question, and this might be on my side of things, but I can’t get the chores to click after they’ve been finished. I see a little cursor pop up over the box, but nothing happens. I can mark them completed from the admin page and it changes it to the check mark. Just wondering if there was some config I might’ve missed? Maybe I have it set to too small of a size?

              PierreGodeP 1 Reply Last reply Reply Quote 0
              • PierreGodeP Offline
                PierreGode Module Developer @dmykins
                last edited by

                @dmykins
                Hi! I have made updates. Do a git pull in the folder and it should work fine.

                1 Reply Last reply Reply Quote 0
                • PierreGodeP Offline
                  PierreGode Module Developer @smfd_guy
                  last edited by

                  @smfd_guy
                  Hi I made a new update. ( git pull in the folder)
                  If you leave dateFormatting With only ”” it will not show a date

                  {
                  module: “MMM-Chores”,
                  position: “bottom_right”,
                  header: “Chores”,
                  config: {
                  hideYear: true,
                  updateInterval: 60 * 1000,
                  adminPort: 5003,
                  showDays: 1, // show tasks from today and th>
                  showPast: true, // also show unfinished tasks f>
                  dateFormatting: “” // example: month-day, can b>
                  }
                  },

                  1 Reply Last reply Reply Quote 0
                  • PierreGodeP Offline
                    PierreGode Module Developer @redbeardedninja
                    last edited by

                    @redbeardedninja

                    Has been a lot of updates last 2 days. Try to go to the folder and do a git pull and restart the mm
                    /Pierre

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      smfd_guy @PierreGode
                      last edited by

                      I just did a new pull and tried the “” to hide the dates. I rebooted but the dates are still showing up. Not sure what I’m doing wrong…

                      {
                      module: “MMM-Chores”,
                      position: “top_left”,
                      header: “Chores”,
                      config: {
                      updateInterval: 60 * 1000,
                      adminPort: 5003,
                      openaiApiKey: “your-openApi-key-here”,
                      hideYear:true,
                      showDays: 3, // show tasks from today and the next 2 days (total 3 days)
                      showPast: true, // also show unfinished tasks from past days
                      dateFormatting:“” // Date format pattern to display task dates,You can use tokens like ‘yyyy’ (year), ‘mm’ (month), ‘dd’ (day), or “mm-dd-yyyy” (US style)
                      }
                      },

                      J 1 Reply Last reply Reply Quote 0
                      • J Offline
                        JohnGalt @smfd_guy
                        last edited by

                        @smfd_guy – Same here… New install but the dates display nevertheless.

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

                          Thanks for all the updates. I’m still unable to click on the chores to mark them as completed. I’m assuming this is an issue on my end. Has anyone else been able to mark them at completed?

                          J 1 Reply Last reply Reply Quote 0
                          • J Offline
                            JohnGalt @redbeardedninja
                            last edited by

                            @redbeardedninja – Are you trying to clear the item(s) on the display screen? I tried that too, but found it can only be marked done from the admin panel.

                            R PierreGodeP 2 Replies Last reply Reply Quote 0
                            • R Offline
                              redbeardedninja @JohnGalt
                              last edited by

                              @JohnGalt

                              Yeah, exactly what I’m trying to do. Ideally, the kids or me or whoever would be able to check off their completed chores. When I go to click the box on the display screen, I see the hand/mouse cursor but it doesn’t interact. If I have to do it from the admin panel, it sort of defeats the purpose that I’m looking for. Open to ideas of how to make this work (not that I have the skill or knowledge to accomplish that…but still).

                              J PierreGodeP 3 Replies Last reply Reply Quote 0
                              • J Offline
                                JohnGalt @redbeardedninja
                                last edited by

                                @redbeardedninja – Agreed! If the developer can make it work as you described it will be much more useable. Probably more intuitive to use, too.

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

                                  @PierreGode could you clarify how this module is meant to work? Should we be able to check off things on the magic mirror, or just on the admin panel?

                                  PierreGodeP 1 Reply Last reply Reply Quote 0
                                  • PierreGodeP Offline
                                    PierreGode Module Developer @JohnGalt
                                    last edited by

                                    @JohnGalt

                                    Hi! dateFormatting: “” is now working with todays patch.

                                    J 1 Reply Last reply Reply Quote 0
                                    • PierreGodeP Offline
                                      PierreGode Module Developer @redbeardedninja
                                      last edited by

                                      @redbeardedninja the plan is to do everything in the admin portal. the mirror is for you to have an overview of what is done and what is left to do.

                                      1 Reply Last reply Reply Quote 0
                                      • PierreGodeP Offline
                                        PierreGode Module Developer @JohnGalt
                                        last edited by

                                        @JohnGalt
                                        if you want to remove things from the mirror you can delete them after being marked as completed. ( everything is still stored in data.json file and AI can use that as information.

                                        J 1 Reply Last reply Reply Quote 0
                                        • PierreGodeP Offline
                                          PierreGode Module Developer @redbeardedninja
                                          last edited by

                                          @redbeardedninja Hi! good point! I am lookin at it and started a update for it to work.

                                          R 1 Reply Last reply Reply Quote 0
                                          • R Offline
                                            redbeardedninja @PierreGode
                                            last edited by

                                            @PierreGode awesome, thanks for letting us know and working on a new way to interact with your module

                                            1 Reply Last reply Reply Quote 1

                                            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
                                            • 4
                                            • 5
                                            • 6
                                            • 1 / 6
                                            • 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