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

    Posts

    Recent Best Controversial
    • RE: MMM-TwitterLists

      @mattkab Fantastic! Thank you very much for putting that together. Will test that later the day.

      posted in Utilities
      MZ-BERM
      MZ-BER
    • ChatGPT is creating Modules

      Hey there - just tested ChatGPT from OpenAI to create a module for the MM. The first lines of the description are looking very promising :astonished_face: . Unfortunately, I’m getting a timeout in ChatGPT because of limited network capacity. Hope they will get back soon to test that more in detail.

      Anyone else experience with ChatGPT?

      27153771-2a45-43b8-b12d-5dab7c9a3f2f-image.png

      posted in Development
      MZ-BERM
      MZ-BER
    • RE: MMM-Multimonth

      Thank you! Is there also an option to disable it or can I only hide that via css?

      posted in Utilities
      MZ-BERM
      MZ-BER
    • RE: Magic(Dashboard)Mirror

      Hello there - I finally got it to upload. I added the files (config.js, custom.css and main.css) to my Github. You can find it here:
      https://github.com/mazim-co/Dashboard-Backup

      NOTES:

      1.) I removed all sensible information like API Keys and Access Tokens in the config.js. So, you have to follow the steps from each module (if requried) to get your own credentials.

      2.) To get the same UI as my dasboard you have to replace the original main.css with my main.css.

      3.) If you change the main.css you’ll get a notification every quarter as soon as MagicMirror will be updated. Because it will have a conflict with the original file. To inititate the MagicMirror update you can do a git reset --hard and replace the main.css again afterwards.

      4.) The custom.css is designed in portrait mode for a 27 inch screen (LG 27MP89HM-S)

      5.) For some modules you have to install valid-url and rrule-alt (e.g. MMM-MyCalendar).
      For example:

      cd MagicMirror/modules/MMM-MyCalendar
      npm install valid-url
      npm install rrule-alt
      

      Good Luck! :beaming_face_with_smiling_eyes:

      posted in Show your Mirror
      MZ-BERM
      MZ-BER
    • RE: MMM-Todoist scrolling list (Marquee)

      Quick update on this. Maybe someone else is looking for a similar way to automatically scroll through the list. You can added following code to the custom.css file:

      /* MMM-Todoist Scrolling Animation */
      .MMM-Todoist .divTable {
             white-space: nowrap;
             overflow: hidden;
             height:150px;   /* increase or decrease the height of the scrolling area*/
             box-sizing: border-box;
      }
      
      .MMM-Todoist .divTable div {
             -webkit-animation: divTable 25s linear infinite alternate;   /* adjust the seconds for the scrolling speed */
      }
      
      @-webkit-keyframes divTable {
            0% { -webkit-transform: translateY(5%); }
          100% { -webkit-transform: translateY(-70%); }
      }
      

      So the shopping or ToDo list is scrolling from the top to the bottom and back to the top again. Here an example: http://jsfiddle.net/51d4umwo/1/

      posted in Development
      MZ-BERM
      MZ-BER
    • RE: MMM-MyVolvo

      @MMRIZE Thank you!!

      posted in Transport
      MZ-BERM
      MZ-BER
    • RE: Magic(Dashboard)Mirror

      Hey everyone! Since last July I updated the Dashboard a bit and added new modules. If you are interested in the config.js and custom.css, I’ll upload the files on github later this week. So you can get in advantage of it.

      Here some pics from the most recent dashboard.

      d4.jpg D1.jpg d2.jpg d3.jpg
      posted in Show your Mirror
      MZ-BERM
      MZ-BER
    • RE: MMM-MyVolvo

      @JerryP Hey! Yes, it is the license plate. Give me a moment I’ll see if I can find the right regex pattern for Netherlands plates.

      EDIT:

      I updated the regex pattern. It should work now for Netherlands and Sweden.
      Just do a git pull.

      posted in Transport
      MZ-BERM
      MZ-BER
    • MMM-MyVolvo

      Hello there - I updated and redesigned a module. :raising_hands:

      The module retrieves informations from your Volvo vehicle through the Volvo Cars API.
      Have a look on my github repository to see all details: MMM-MyVolvo

      4609aff1-5c54-4cfa-b926-78075e13159f-image.png

      Notes:

      • The module is build on the initial module from eouia (archived).
      • I removed the maps functionality and replaced it with a placeholder for your Volvo Image.
      • It only works for Volvos with a German License Plate (More countries will follow soon).
      • Since the community of Volvo owners with a MagicMirror is small, I wasn’t able to test that in detail. There could be the possibility of bugs.
      • I’m a developer beginner and just started to learn programming. I might not be able to help you with all issues.
      posted in Transport
      MZ-BERM
      MZ-BER
    • RE: Volvo on Call

      @strawberry-3-141 True! Good catch! So I guess every variation can also have an E at the end. Do you know if there is a whitespace between the last digit and the E? If it is without a space, this will work:

      ^([A-Z]{1,3}-[A-Z]{1,2}\s[0-9,E]{1,5})\s([\w\s]+)\:\s(.+)$

      posted in Troubleshooting
      MZ-BERM
      MZ-BER
    • 1 / 1