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

    Cain

    @Cain

    -1
    Reputation
    5
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Cain Unfollow Follow

    Best posts made by Cain

    • RE: MMM-google-route not getting the information from my calender

      problem solved I needed to put the broadcast events into the subheading of the calendar i wanted the event broadcasted from.

      and change MMM-Google-Route
      listen : ‘[CALENDAR_EVENTS]’,

      {
      			module: "calendar",
      			header: "CainsCalender",
      			position: "top_left",        
      			config: {
      				maximumEntries: "5",
      				showLocation: true,
      				coloured: true,
      				coloredSymbolOnly: true,
                      
                      tableClass: 'large',
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "https://calendar.google.comsexyas/basic.ics",
                              **broadcastEvents: true,**			
      					},
      					{
      						symbol: "toilet-paper",
                              url: "https://www.officeholidays.com/ics-clean/australia/queensland",
      						
      					},
      								
      				]
      			}
      		},**bolded text**
      posted in Troubleshooting
      C
      Cain

    Latest posts made by Cain

    • RE: MMM-Hue-Lights - new module for your Philips Hue lights!

      i also found that i had to change folder name from

      MMM-Hue-Lights to mmm-hue-lights - not sure why but i did.

      After the 10mintues when it stops workings. can you then access the debug using the website? Only when the error occurs.

      also have you done the sudo apt-get update && sudo apt-get full-upgrade ?

      posted in Utilities
      C
      Cain
    • RE: MMM-Hue-Lights - new module for your Philips Hue lights!

      @jasim said in MMM-Hue-Lights - new module for your Philips Hue lights!:

      ch habe nochmal eine neue user nummer erzeugt und auch da nach 10 min keine verbindung mehr. Kann es sein das bei der erzeugung der user nummer da steht ( {“devicetype”:“my_hue_app#iphone peter”} )
      ich habe aber ein Android Smartphone , kann das der Fehler sein.?

      can you use the api on the hub itself when it stops working on the magic mirror

      https:// /debug/clip.html ?

      as maybe there are too many request

      also what version of the hub are you using?

      and what updateinterval?

      posted in Utilities
      C
      Cain
    • RE: MMM-google-route not getting the information from my calender

      problem solved I needed to put the broadcast events into the subheading of the calendar i wanted the event broadcasted from.

      and change MMM-Google-Route
      listen : ‘[CALENDAR_EVENTS]’,

      {
      			module: "calendar",
      			header: "CainsCalender",
      			position: "top_left",        
      			config: {
      				maximumEntries: "5",
      				showLocation: true,
      				coloured: true,
      				coloredSymbolOnly: true,
                      
                      tableClass: 'large',
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "https://calendar.google.comsexyas/basic.ics",
                              **broadcastEvents: true,**			
      					},
      					{
      						symbol: "toilet-paper",
                              url: "https://www.officeholidays.com/ics-clean/australia/queensland",
      						
      					},
      								
      				]
      			}
      		},**bolded text**
      posted in Troubleshooting
      C
      Cain
    • MMM-google-route not getting the information from my calender

      Hi,
      I have google route installed and its working when I have a destination set. But it’s not updating with any calendar entries. My API key is working on mmm-mycommute

      my code looks like

      	module: 'MMM-google-route',
                  position: 'bottom_left',
                  config: {
                      key: 'workingkey',
                      title: 'Next Location',
                      height: '700px',
                      width: '750px',
                      refreshPeriod: '30',
                      listen: "calender",
                      minimumRefreshPeriod: "5",
                      directionsRequest:{
                          origin: 'gold coast',
                          destination: 'Bond University'
      				}
      			}
      		}, 
      

      and my calender is

      			module: "calendar",
      			header: "Cains Calender",
      			position: "top_left",
      			config: {
      				maximumEntries: "5",
      				showLocation: true,
      				coloured: false,
      				coloredSymbolOnly: true,
                                      broadcastEvents: true,
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "working calender"			
      								},
      					{
      						url: "https://www.officeholidays.com/ics-clean/australia/queensland",
      						symbol: "toilet-paper"
      					},
      								
      				]
      			}
      	},
      

      there is something said about notifications but i don’t understand.
      any help would be appreciated.
      thank you

      posted in Troubleshooting
      C
      Cain