@mattkab Fantastic! Thank you very much for putting that together. Will test that later the day.
Read the statement by Michael Teeuw here.

Posts
-
RE: MMM-TwitterLists
-
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?
-
RE: MMM-Multimonth
Thank you! Is there also an option to disable it or can I only hide that via css?
-
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-BackupNOTES:
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:
-
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/
-
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
andcustom.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.
-
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 agit pull
. -
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-MyVolvoNotes:
- 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.
-
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(.+)$