Read the statement by Michael Teeuw here.
My MagicMirror Display
-
Here is my MagicMirror, not a mirror but a display. The hardware is:
- Raspberry Pi 3 Model A Plus Rev 1.0
- WEme USB 3.0 to SATA Converter Adapter for 2.5 3.5 Inch Hard Drive Disk SSD
- 128GB 2.5 Inch SSD
- ACER 21.5 Inch Monitor 1920x1080
- RPios Bullseye
The software is:
- MagicMirror V 2.26.0 with the following modules:
- Clock - Standard date and time display.
- Calendar - Combines multiple Apple and Google calendar into a single display.
- Weather - Local current and forecast weather.
- MMM-Fuel - Local Gasbuddy fuel prices displayed for lowest price offerings at stations in town.
- Newsfeed - Standard Newsfeed display with headlines displayed at screen bottom.
(Not the best possible image but you get the idea)
It is the combined calendar display that get the most attention and was the most challenging to configure.
I had some problems getting RPios software to operate in portrait orientation. Actually, I never was successful to get portrait mode until the Xwindows system started and was instructed to use portrait mode.
One thing I had to do was increase the RPios swap space from the default 100MB to 2GB. Otherwise the system would get stuck in page thrashing as it got busy and swap space filled up.
Thanks to @sdetweil for his assistance solving some issues.
Butch
-
@butchkemper Effective and it works for you and the family! That’s the main thing!
-
Your display is very similar to my needs.
My one child is doing home school and we struggle to ensure she actually sits the classes.Allow me a stupid question, please.
Her diary feed is coming from two sources, easily joined in Google Calendar (the normal calendar pre MM)How do I combine the two calendars in MM plus one more?
Would you mind giving me some guidance, please?
Regards
Frits
-
@frits-erasmus you can list multiple sources on calendar
calendars:[ { url:"....", }, { url:"..." } ]
-
-
I am trying to use different colors for the different calendars.
Below is my code, but the colors of the calendar stay white.{ module: "calendar", header: "Daphne school program", position: "bottom_left", config: { calendars: [ { fetchInterval: 7 * 24 * 60 * 60 * 1000, symbol: "calendar ", colored: "#FFFF00", url: "https://teneo.instructure.com/feeds/calendars/user_tNYDgSujrTDUwf6RAUvdhGEk8O1TIQlmcp0imRhA.ics" }, { fetchInterval: 7 * 24 * 60 * 60 * 1000, symbol: "calendar-o", colored: "#FF0000", url: "https://calendar.google.com/calendar/ical/daphne.erasmus.sa%40gmail.com/public/basic.ics" } ] } }, Any help or suggestion please?
-
@frits-erasmus please open new topics
colored:true between config:{ and calendars
color in url block
-
@sdetweil
Thanks for the help
I will do next time sorry!!