• 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. icmike52
  3. Posts
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
I
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 2
  • Posts 7
  • Groups 0

Posts

Recent Best Controversial
  • RE: Calendar not displaying what I want

    For anyone having trouble with MM calendar not displaying their Google calendar correctly, please read on…

    The default calendar module in MM works very well. The developers deserve a lot of credit.
    You first have to understand how Google calendar works.

    1. My Google Calendar: I assumed that if it was in My main Google Calendar, it would show in my MM calendar.
      This is not true. Google just conveniently merges all of your calendars into one.
      For instance, In my Google Calendar settings, I added a “Holidays in the United States” additional calendar.
      In settings, it has public url but no iCal format so it will never show in MM.
      To get Holidays in the U.S. to display, I had to go outside Google calendar. See below in my config.
      If you’ve subscribed to an addional calendar, like a sport team calendar from Stanza, in Settings look for
      its Secret address in iCal format. If your calendar does not show this option, (only has a url) it won’t show
      in MM. It must start with an http and end with .ics.

    2. Birthdays: In your Google calendar, there is a checkbox to display birthdays.
      This works great as long as the person is in your Google contacts and you have set their
      birthdate INSIDE the contact details. If you just added a persons birthday to your
      calendar as a recurring event like I did, the checkbox to display Birthdays is meaningless.

    Also in case you did not know, there are tons of calendar symbols at https://fontawesome.com/icons?from=io
    that work natively in the calendar module.
    Here is my config that works. (But hiding my credentials, of course)

    {
    	module: "calendar",
    	header: "My Calendar",
    	position: "top_left",
    	config: {
    	calendars: [
    			{
    	symbol: "birthday-cake",
            maximumNumberOfDays: 60,
    	url: "https://calendar.google.com/calendar/ical/xxxxxx%40gmail.com/private-xxxxxxxx/basic.ics",
    	user: 'xxxxxxxx@gmail.com',
    	password: 'xxxxxxxxxxx',
    	method: 'basic'
    			},
    			{							
            symbol: "hockey-puck",
            url: "https://calendar.google.com/calendar/ical/xxxxxxxstanza calendar/private-xxxxxxxxxxxxxxx/basic.ics",
    			},
    		        {							
            symbol: "football-ball",
            url: "https://calendar.google.com/calendar/ical/xxxxxxstanza calendar/private-xxxxxxxx/basic.ics",
    			},
                            {
    	symbol: "glass-cheers",
            url: "https://www.officeholidays.com/ics-fed/usa"
    			},
    		   ]
    		}
    }, 
    

    Please feel free to add anything about Google calendar integration that I missed.

    posted in Troubleshooting
    I
    icmike52
    Aug 5, 2020, 6:38 PM
  • Calendar not displaying what I want

    I have been searching and I’m getting more confused.
    My Google calendar (My Calendar) contains a few calendars. Holidays in United States show up under Other calendars. I mistakenly assumed by using the Secret address for MyName Calendar settings in iCal format would show me everything. It does not. MM only shows birthdays. Nothing else. I’ve tried several different ways but no matter what I change, only birthdays show. My config.js runs, just doesn’t show both.

    {
    	module: "calendar",
    	header: "My Calendar",
    	position: "top_left",
    	config: {
    	calendars: [
    			{
    	symbol: "birthday-cake",
    	url: "https://calendar.google.com/calendar/ical/xxxxx%40gmail.com/private-xxxxx/basic.ics",
    	user: 'xxxxx@gmail.com',
    	password: 'xxxxx',
    	method: 'basic'
    			},
    			{
    	symbol: "calendar-check-o ",
    	url: "https://calendar.google.com/calendar/embed?src=en.usa%23holiday%40group.v.calendar.google.com&ctz=America%2FNew_York"
    			}
    		   ]
    		}
    },
    
    posted in Troubleshooting
    I
    icmike52
    Aug 3, 2020, 11:48 PM
  • RE: MMM-network-signal not showing

    pi@raspberrypi:~/MagicMirror/modules $ ls -laf
    MMM-network-signal-master MMM-Tools …
    MMM-BMW-OW default MMM-Remote-Control
    MMM-MyScoreboard . MMM-History

    I renamed the folder “MMM-network-signal-master” to “MMM-network-signal” and it is now working. So simple when you know what to look for. Thanks Sam! I learned something.

    FYI I seem to remember I downloaded the folder https://github.com/PoOwAa/MMM-network-signal.git from https://github.com/PoOwAa/MMM-network-signal

    When I unzipped it, the folder name was wrong.

    posted in Troubleshooting
    I
    icmike52
    Aug 2, 2020, 6:30 PM
  • RE: MMM-network-signal not showing

    That is useful. Thanks, Sam.

    Load script: modules/MMM-network-signal//MMM-network-signal.js
    loader.js:191 GET http://0.0.0.0:8080/modules/MMM-network-signal//MMM-network-signal.js net::ERR_ABORTED 404 (Not Found)
    loader.js:185 Error on loading script: modules/MMM-network-signal//MMM-network-signal.js

    But makes no sense 404 Not Found. I have not edited the MMM-network-signal.js file . The only address i see the the MMM-network-signal.js file is 8.8.8.8 (Google DNS) which I can ping just fine. I’ve even changed the server: “192.168.0.1” and it made no difference.

    posted in Troubleshooting
    I
    icmike52
    Aug 2, 2020, 5:42 PM
  • RE: MMM-network-signal not showing

    Yes
    pm2 restart mm

    posted in Troubleshooting
    I
    icmike52
    Aug 2, 2020, 4:26 PM
  • RE: MMM-network-signal not showing

    Thanks for the quick response. I did both commands “npm i” and “npm install ping” from the /home/pi/MagicMirror/modules/MMM-network-signal-master directory
    pi@raspberrypi:~/MagicMirror/modules/MMM-network-signal-master $ npm install
    added 3 packages from 20 contributors and audited 3 packages in 1.296s
    found 0 vulnerabilities

    Sorry, I’m still missing something simple. Still learning.

    posted in Troubleshooting
    I
    icmike52
    Aug 1, 2020, 9:53 PM
  • MMM-network-signal not showing

    Runnning MagicMirror v 2.12.0

    I’m missing something simple. Following the instructions…
    I’ve cloned the repo into /MagicMirror/modules directory
    npm install ping (From the MMM-network-signal directory. Not sure if it had to be this directory)
    npm i

    And am using this code in my config.js
    {
    module: “MMM-network-signal”,
    position: “bottom_left”,
    config: {
    }
    },

    Nothing shows! I’m not seeing anything meaningful in the log, unless it’s not seeing the helper. (npm ping I assume)

    0|mm | > magicmirror@2.12.0 start /home/pi/MagicMirror
    0|mm | > DISPLAY=“${DISPLAY:=:0}” ./node_modules/.bin/electron js/electron.js
    0|mm | [2020-08-01 16:33:47.745] [LOG]
    0|mm | Starting MagicMirror: v2.12.0
    0|mm | [2020-08-01 16:33:47.759] [LOG]
    0|mm | Loading config …
    0|mm | [2020-08-01 16:33:47.773] [LOG]
    0|mm | Loading module helpers …
    0|mm | [2020-08-01 16:33:47.777] [LOG] No helper found for module: alert.
    0|mm | [2020-08-01 16:33:47.893] [LOG]
    0|mm | Initializing new module helper …
    0|mm | [2020-08-01 16:33:47.894] [LOG] Module helper loaded: updatenotification
    0|mm | [2020-08-01 16:33:47.896] [LOG] No helper found for module: clock.
    0|mm | [2020-08-01 16:33:48.656] [LOG]
    0|mm | Initializing new module helper …
    0|mm | [2020-08-01 16:33:48.657] [LOG] Module helper loaded: calendar
    0|mm | [2020-08-01 16:33:48.661] [LOG] Initializing new module helper …
    0|mm | [2020-08-01 16:33:48.662] [LOG] Module helper loaded: MMM-MyScoreboard
    0|mm | [2020-08-01 16:33:48.663] [LOG]
    0|mm | No helper found for module: currentweather.
    0|mm | [2020-08-01 16:33:48.665] [LOG] No helper found for module: weatherforecast.
    0|mm | [2020-08-01 16:33:48.667] [LOG] No helper found for module: MMM-network-signal.
    0|mm | [2020-08-01 16:33:48.668] [LOG] All module helpers loaded.
    0|mm | [2020-08-01 16:33:48.883] [LOG]
    0|mm | Starting server on port 8080 …
    0|mm | [2020-08-01 16:33:48.894] [INFO]
    0|mm | You’re using a full whitelist configuration to allow for all IPs
    0|mm | [2020-08-01 16:33:48.908] [LOG]
    0|mm | Server started …
    0|mm | [2020-08-01 16:33:48.909] [LOG] Connecting socket for: updatenotification
    0|mm | [2020-08-01 16:33:48.911] [LOG] Connecting socket for: calendar
    0|mm | [2020-08-01 16:33:48.913] [LOG] Starting node helper for: calendar
    0|mm | [2020-08-01 16:33:48.914] [LOG] Connecting socket for: MMM-MyScoreboard
    0|mm | [2020-08-01 16:33:48.916] [LOG] Starting node_helper for module [MMM-MyScoreboard]
    0|mm | [2020-08-01 16:33:49.964] [LOG]
    0|mm | Sockets connected & modules started …
    0|mm | [2020-08-01 16:33:50.113] [LOG]
    0|mm | Launching application.
    0|mm | [2020-08-01 16:33:53.003] [LOG]
    0|mm | Create new calendar fetcher for url: https://calendar.google.com/calendar/ical/xxxxxxxxxxxxx/basic.ics - Interval: 300000
    0|mm | [2020-08-01 16:33:53.189] [INFO]
    0|mm | Checking git for module: MMM-MyScoreboard
    0|mm | [2020-08-01 16:33:54.796] [INFO]
    0|mm | Calendar-Fetcher: Broadcasting 26 events.
    0|mm | [2020-08-01 16:34:10.414] [LOG]

    posted in Troubleshooting
    I
    icmike52
    Aug 1, 2020, 8:51 PM
  • 1 / 1
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