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

Thorn2910

@Thorn2910

0
Reputation
1
Profile views
7
Posts
0
Followers
0
Following
Joined May 1, 2021, 6:22 PM
Last Online Jan 26, 2025, 7:05 AM

Thorn2910 Unfollow Follow

Latest posts made by Thorn2910

  • RE: Sonos Module

    I had exactly the same issue!

    MMM-Sonos Version v.0.0.1 released beginning of 2024

    Chnged in MMM-Sonos.js th following part
    from

    apiBase: 'http://localhost',
    

    to

    apiBase: 'http://192.168.1.22',
    

    Obviously change the IP addess accordingly

    For additional info my MMM-Sonos part config.js in /MagicMirror/config/config.js

     {
                            module: 'MMM-Sonos',
                            //header: "Sonos",
                            position: 'top_center', // you may choose any location
                            config: {
                                                    showStoppedRoom: false,
                                                    albumArtLocation: "left",
                                    }
                    },
    

    then it worked! With http://localhost I always got

    [ERROR] Failure: Error: connect ECONNREFUSED ::1:5005
    

    in the logs

    posted in Troubleshooting
    T
    Thorn2910
    Jan 13, 2024, 10:10 AM
  • RE: Another way of identifying which event is associated with which Calendar

    @ruff-hi

    That is exactly the alternative which I showed

    {
    			module: "calendar",
    			header: "House",
    			position: "top_left",
    			maximumEntries: "3",
    			config: {
    				colored: true,
    				tableClass: "small",
    				calendars: [
    					{
                                                    symbol: "fas fa-house-user",
                                                    maximumEntries: "2",
                                                    color: "rgb(121, 0, 86)",
                                                    url: "https://calendar.google.com/calendar/ical/xxx/basic.ics"
                                            }
    			                    ]
    				}
    		},
    		{
                            module: "calendar",
                            header: "Trash",
                            position: "top_left",
                            maximumEntries: "3",
                            config: {
                                    colored: true,
                                    tableClass: "small",
                                    calendars: [
                                            {
                                                    symbol: "fas fa-trash",
                                                    color: "rgb(185, 62, 38)",
                                                    maximumEntries: "2",
                                                    url: "https://calendar.google.com/calendar/ical/xxxxx/basic.ics"                                        
                                            }        
                                                ]
                                    }
                    },
    

    Which will look like this

    5ddd9a13-36aa-47ad-a265-e6e9b94e367a-grafik.png

    posted in Custom CSS
    T
    Thorn2910
    Mar 13, 2022, 7:08 AM
  • RE: Another way of identifying which event is associated with which Calendar

    @ruff-hi
    Why don’t you work with different colors

    {
    			module: "calendar",
    			header: "Events",
    			position: "top_left",
    			maximumEntries: "3",
    			config: {
    				colored: true,
    				tableClass: "small",
    				calendars: [
    					{
    						symbol: "fas fa-trash",
    						color: "rgb(185, 62, 38)",
    						maximumEntries: "2",
    						url: "https://calendar.google.com/calendar/ical/xxxxx/public/basic.ics"
    					},
    					{
                                                    symbol: "far fa-calendar-alt",
                                                    color: "rgb(250, 253, 140)",
                                                    maximumEntries: "2",
                                                    url: "webcal://p102-caldav.icloud.com/published/2/xxxx"
                                            },
    					{
                                                    symbol: "fas fa-house-user",
                                                    maximumEntries: "2",
                                                    color: "rgb(121, 0, 86)",
                                                    url: "https://calendar.google.com/calendar/ical/xxx/basic.ics"
                                            }
    			                    ]
    				}
    		},
    

    This way you know excatly which calendar you are looking at.

    Alternatively you cloud add two different instances of the calendar module

    {
    			module: "calendar",
    			header: "Wife",
    			position: "top_left",
    			maximumEntries: "3",
    			config: {
    				colored: true,
    				tableClass: "small",
    				calendars: [
    					{
    						symbol: "fas fa-trash",
    						color: "rgb(185, 62, 38)",
    						maximumEntries: "2",
    						url: "https://calendar.google.com/calendar/ical/xxxx/basic.ics"
    					}
    
    		},
    
    {
    			module: "calendar",
    			header: "You",
    			position: "top_left",
    			maximumEntries: "3",
    			config: {
    				colored: true,
    				tableClass: "small",
    				calendars: [
    					{
    					                                                symbol: "fas fa-house-user",
    					                                                maximumEntries: "2",
    					                                                color: "rgb(121, 0, 86)",
    					                                                url: "https://calendar.google.com/calendar/ical/xxx/basic.ics"
    					                                        }
    
    		},
    
    posted in Custom CSS
    T
    Thorn2910
    Mar 6, 2022, 10:58 AM
  • RE: MM-Calendar Module - iCloud Public Calendar not working

    @jerryp

    Woha!!!

    I just unchecked the Public calendar in iCloud and rechecked it again - this changed the link to

    webcal://p102-caldav.icloud.com/published/2/xxx
    

    and now it works again!

    Changing to solved!

    posted in Troubleshooting
    T
    Thorn2910
    Mar 6, 2022, 9:51 AM
  • RE: MM-Calendar Module - iCloud Public Calendar not working

    @jerryp
    Checked it on the iCloud page again - yes.

    One problem remains if I copy the link which iCloud is giving me an I copy it in Firefox - it wants to open Chrome which gives me nothing

    If i change the webcal to http or https i get a HTTP error 503

    I even tried a new public calendar … same issues

    posted in Troubleshooting
    T
    Thorn2910
    Mar 6, 2022, 9:38 AM
  • RE: MM-Calendar Module - iCloud Public Calendar not working

    @jerryp

    Tried this as well - every possbile way - webcal / http and https
    I get the same error message (with webcal it reverts back to http)

    {
                                                    symbol: "far fa-calendar-alt",
                                                    color: "rgb(250, 253, 140)",
                                                    maximumEntries: "2",
                                                    url: "http://p44-caldav.icloud.com/published/2/xxx"
                                            },
    
    {
                                                    symbol: "far fa-calendar-alt",
                                                    color: "rgb(250, 253, 140)",
                                                    maximumEntries: "2",
                                                    url: "https://p44-caldav.icloud.com/published/2/xxx"
                                            },
    
    {
                                                    symbol: "far fa-calendar-alt",
                                                    color: "rgb(250, 253, 140)",
                                                    maximumEntries: "2",
                                                    url: "webcal://p44-caldav.icloud.com/published/2/xxx"
                                            },
    
    posted in Troubleshooting
    T
    Thorn2910
    Mar 6, 2022, 8:40 AM
  • MM-Calendar Module - iCloud Public Calendar not working

    I’ve been running the MM-Calendar modul for over 1 1/2 years now -

    Magic Mirror Version

    Starting MagicMirror: v2.16.0
    

    Calendar Module Integration

    {
    			module: "calendar",
    			header: "Events",
    			position: "top_left",
    			maximumEntries: "3",
    			config: {
    				colored: true,
    				tableClass: "medium",
    				calendars: [
    					{
    						symbol: "fas fa-trash",
    						color: "rgb(185, 62, 38)",
    						maximumEntries: "2",
    						url: "https://calendar.google.com/calendar/ical/xxxxx/public/basic.ics"
    					},
    					{
                                                    symbol: "far fa-calendar-alt",
                                                    color: "rgb(250, 253, 140)",
                                                    maximumEntries: "2",
                                                    url: "https://p44-caldav.icloud.com/published/2/xxxx"
                                            },
    					{
                                                    symbol: "fas fa-house-user",
                                                    maximumEntries: "2",
                                                    color: "rgb(121, 0, 86)",
                                                    url: "https://calendar.google.com/calendar/ical/xxxx/basic.ics"
                                            }
    			                    ]
    				}
    		},
    
    

    MM currently cannot fetch the iCloud calendar - and I did not change a single line of code. The Google calendars still work like a charm.

    I get this Error Message

    [06.03.2022 09:15.52.234] [ERROR] Calendar Error. Could not fetch calendar:  https://p44-caldav.icloud.com/published/2/xxx Error: Service Unavailable
        at NodeHelper.checkFetchStatus (/home/pi/MagicMirror/js/node_helper.js:121:9)
        at processTicksAndRejections (internal/process/task_queues.js:97:5)
    

    I beleive Apple changed something - or the service is down - but I did not find anything on the Status pages.

    Anyone has the same issues?

    posted in Troubleshooting
    T
    Thorn2910
    Mar 6, 2022, 8:24 AM
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