MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. PierreGode
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    P
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 25
    • Groups 0

    PierreGode

    @PierreGode

    5
    Reputation
    17
    Profile views
    25
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    PierreGode Unfollow Follow

    Best posts made by PierreGode

    • MMM-ZAPTEC Chargergers and your charging history. 18 languages supported

      Show Zaptec charger information on your Mirror.
      supports status for multiple chargers and your charging history.
      https://github.com/PierreGode/MMM-ZAPTEC
      18 languages supported

      b67e546e-42ed-4e29-9dea-222d848781d1-image.png

      {
        module: "MMM-ZAPTEC",
        position: "bottom_right",
        header: "Zaptec",
        config: {
          username: "YOUR_USERNAME",
          password: "YOUR_PASSWORD",
          updateInterval: 30000,
          lang: "sv",
          enableChargeHistory: true,
          charger: "all",
          showHistoryEntries: 5 
       }
      },
      
      posted in Transport
      P
      PierreGode
    • MMM-Chores - Manage and keep track of your household Chores

      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

      e1739cf4-279d-4f46-8c34-868dbb2db5c9-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”,
      useAI: true, // hide AI features when false
      showDays: 3, // show tasks from today and the next 2 days (total 3 days)
      showPast: true, // also show unfinished tasks from past days
      textMirrorSize: “small”, // small, medium or large
      dateFormatting: “MM-DD” // Date format pattern to display task dates.
      // Use tokens like ‘yyyy’, ‘mm’, ‘dd’.
      // Set to “” to hide the date completely.
      }
      },

      posted in Utilities
      P
      PierreGode
    • RE: Custom icons for Calendar

      @PierreGode
      You can add custom icons that will appear matching keywords in your caledar.
      so if you create a calendar entry with the word soccer the mirror will show you a ball with your event.
      here is a list i created with icons that work. you can change this how you wish and add it to your canlendar section in config.js

      posted in Show your Mirror
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @redbeardedninja
      Hi! You can now use in config.js
      textMirrorSize: “small”, // small, medium or large

      posted in Utilities
      P
      PierreGode

    Latest posts made by PierreGode

    • RE: Touchscreen Family Dashboard

      @tjat I recomment you to take a look at my https://github.com/PierreGode/MMM-Chores ( it supports touch )

      posted in Show your Mirror
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @JohnGalt
      Hi, you can now disable AI in config.js
      useAI: false, // hide AI features when false

      posted in Utilities
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @redbeardedninja
      Hi! You can now use in config.js
      textMirrorSize: “small”, // small, medium or large

      posted in Utilities
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @JohnGalt
      I will add an option in config.js to disable AI from being configurable and hide the AI button

      posted in Utilities
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @JohnGalt

      No need to set your device on fire.
      The data is only stored in the module folder /MMM-Chores/ in data.json and will NOT be shared with anything unless you add the openapi token.

      No openai api token = no data leaving your device.

      If you want to use ai with api token

      1. ONLY content of modules/MMM-Chores/data.json is shared.

      2. data.json is my file were I store the content of admin page, for security I convert users to ID’s

      3. NOTHING gets sent unless YOU press the AI genrste button.

      posted in Utilities
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @redbeardedninja
      I will add that a little bit later so sizes an be modified from config.js

      posted in Utilities
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @redbeardedninja Hi this has now being added to latest update!
      you can now check the checkboxes directly on the mirror it self. (touch screen also works)

      ( the web admin portal will not update directly unless you refresh the page)
      What i found hard is that the mouse is invisible on magic mirror but if you manage to find the checkboxes they will be clickable. ( meaby a setting that can be tampered with)

      posted in Utilities
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @JohnGalt
      All tasks and peope are stored in data.json even if you delete them (softdelete) . this is so both analytics page can view history and also so the AI generate can use your completed task as information. when you press AI generate it will read the data.json and look for all completed task deleted or not, and use that to create tasks for coming week.

      posted in Utilities
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

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

      posted in Utilities
      P
      PierreGode
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @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.

      posted in Utilities
      P
      PierreGode