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

    Posts

    Recent Best Controversial
    • RE: MMM-ImageSlideshow Showing images from a USB drive

      @sdetweil
      Just an FYI I did get all my photos to display correctly after using:
      xnconvert from:
      http://www.xnconvert.com
      I selected ALL my photos and in the Actions section I selected Clear Meta data. I cleared everything but from a little research I believe I only needed to clear the EXIF data.
      Anyway it worked.

      MM

      posted in Tutorials
      M
      MwMagicMirror
    • RE: MMM-ImageSlideshow Showing images from a USB drive

      Hey Sam,
      Hows the weather down there in TX, We are originally from the Dallas area. Miss TX alot.

      Yea the picture orientation is a show stoppper for me, I have a hard time convincing my wife that she likes the mirror in the bathroom…lol

      What is MMM-ImagesPhotos? I dont see it on the Builders site.

      posted in Tutorials
      M
      MwMagicMirror
    • RE: MMM-ImageSlideshow Showing images from a USB drive

      I do have one question.

      All of my pictures have the proper orientation when viewed on my windows PC, however when copied over to my MM some of them are not oriented correctly.

      Anyone know the reason or if there is a fix?
      I really like the ImageSlideShow, I feel like it gives me more control over the Google Photo version.
      Thanks
      MM

      posted in Tutorials
      M
      MwMagicMirror
    • RE: MMM-ImageSlideshow Showing images from a USB drive

      Perfect

      I’m following now, working as advertised.

      tyvm

      posted in Tutorials
      M
      MwMagicMirror
    • RE: MMM-ImageSlideshow Showing images from a USB drive

      Hmm
      Failed to load resource: The server responded with a status of 404 Not Found
      I tried giving it the full path, that didnt work either.

                  {
                        module: 'MMM-ImageSlideshow',
                        position: 'top_center',
                        config: {
                        fixedImageWidth: 600,
                        fixedImageHeight: 600,
                        //imagePaths: ['modules/MMM-ImageSlideshow/example1']
                        imagePaths: ['/home/pi/MagicMirror/modules/MMM-ImageSlideshow/exampleImages']
      
      posted in Tutorials
      M
      MwMagicMirror
    • RE: MMM-ImageSlideshow Showing images from a USB drive

      Hi,
      I’ve configured ImageSlideshow accordingly however I do not get any photos to display, I get a box the correct size and a little icon in the upper left of the box.
      These are photos I have been using for months in Google Photos, the example photos do not display either.
      I have the width and height both set to 600
      Any Ideas
      Thanks
      MM

      posted in Tutorials
      M
      MwMagicMirror
    • RE: new update/upgrade script, ready for testing

      @sdetweil said in new update/upgrade script, ready for testing:

      bash -c “$(curl -sL https://www.dropbox.com/s/lxzwyzohg61sppu/upgrade-script.sh?dl=0)” apply
      Hi,
      I just ran your script and get the following errors:
      error: pathspec ‘.github/stale.yml’ did not match any file(s) known to git.
      error: pathspec ‘modules/default/calendar/vendor/ical.js/example_rrule.js’ did not match any file(s) known to git.
      error: pathspec ‘modules/default/calendar/vendor/ical.js/examples/example_rrule.ics’ did not match any file(s) known to git.
      error: pathspec ‘modules/default/calendar/vendor/ical.js/test/test12.ics’ did not match any file(s) known to git.
      error: pathspec ‘modules/default/calendar/vendor/ical.js/test/test13.ics’ did not match any file(s) known to git.
      error: pathspec ‘modules/default/calendar/vendor/ical.js/test/test14.ics’ did not match any file(s) known to git.
      error: pathspec ‘modules/default/weather/providers/ukmetoffice.js’ did not match any file(s) known to git.
      error: pathspec ‘modules/default/weather/providers/weathergov.js’ did not match any file(s) known to git.
      error: pathspec ‘translations/sk.json’ did not match any file(s) known to git.
      error: pathspec ‘translations/tlh.json’ did not match any file(s) known to git.
      error: pathspec ‘vendor/css/font-awesome.css’ did not match any file(s) known to git.

      Any Ideas? I dont recall messing with any of those files.

      Thanks
      MW

      posted in General Discussion
      M
      MwMagicMirror
    • RE: Getting Google Contacts birthdays into Calendar

      for (var i = 0; i < eventToDelete.length; i++) {
      }
      eventToDelete[i].deleteEvent();

      Thats what I noticed, anyway its all good, dont see that issue in any code now.
      Also I noticed that my birthday calendar has all my appointments and such. I see the logic is basically copying my main calendar into the birthday calendar. I manually delete everything out of my birthday calendar except for the birthdays, all is good…until…the script runs again then I back to having everything in my birthday calendar.

      MW

      posted in Development
      M
      MwMagicMirror
    • RE: Getting Google Contacts birthdays into Calendar

      @bolish
      That got it for me, you did have the eventToDelete[i].deleteEvent(); outside the for loop, anyway its working like it should now.

      tyvm

      MW

      posted in Development
      M
      MwMagicMirror
    • RE: Getting Google Contacts birthdays into Calendar

      @bolish said in Getting Google Contacts birthdays into Calendar:

      function Sync_Birth_Cal() {

      // Calendars adress (ID)

      var calendarSource = CalendarApp.getCalendarById(“THE ID OF YOUR CONTACT CALENDAR”);
      var calendarDestination = CalendarApp.getCalendarById(“THE ID OF THE CREATED CALENDAR”);

      // Start and End Date definition

      var Today = new Date();
      var StartDeleteDate = new Date();
      var EndDeleteDate = new Date();
      var StartCopyDate = new Date();
      var EndCopyDate = new Date();

      StartDeleteDate.setDate(Today.getDate()-400);
      EndDeleteDate.setDate(Today.getDate()+400);
      StartCopyDate.setDate(Today.getDate()-360);
      EndCopyDate.setDate(Today.getDate()+360);

      // first deletes all datas in calendar

      var eventToDelete = calendarDestination.getEvents(StartDeleteDate, EndDeleteDate);

      for (var i = 0; i < eventToDelete.length; i++) {
      eventToDelete[i].deleteEvent();
      }

      // then copy everything again

      var eventToCopy = calendarSource.getEvents(StartCopyDate, EndCopyDate);

      for (var t in eventToCopy){
      var newEvent = calendarDestination.createEvent(eventToCopy[t].getTitle(), eventToCopy[t].getStartTime(), eventToCopy[t].getEndTime());
      }

      }

      I get this error when I try to run the script:

      TypeError: Cannot call method “getEvents” of null. (line 25, file “Code”)

      I got that sorted, forgot the 2 IDs.
      Now I get:
      Service invoked too many times in a short time: calendar. Try Utilities.sleep(1000) between calls. (line 37, file “Code”)

      MW

      posted in Development
      M
      MwMagicMirror
    • RE: MMM-GooglePhotos - Config help

      @bodenburgc
      I downloaded the client_secret file and copied it to my MMM-GooglePhotos directory.
      Step 9 I ran the command as you did:
      cd ~/MagicMirror/modules/MMM-GooglePhotos
      node auth_and_test.js

      It took me back to google account and it gave me the consent code to paste into the console.

      It then listed all my albums I have on Google Photos.

      MW

      posted in Troubleshooting
      M
      MwMagicMirror
    • RE: US Holidays calendar not working

      Here you go, working for me.
      url: ‘https://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics’

      MW

      posted in Troubleshooting
      M
      MwMagicMirror
    • Google Birthdays

      Has anyone gotten MMM-GoogleBirthdaysProvider to work, I know for sure I have a slew of birthdays in the next 2 months. I followed the setup instructions with no issues but I just get the dreaded:
      No upcoming events when I know there should be.

      Thanks
      MW

      posted in Troubleshooting
      M
      MwMagicMirror
    • RE: Multiple Calendars

      Nilnik,
      I did sort it out, I ended up putting Birthdays and Holidays in there own section, it now displays birthdays above the holidays.
      My only issue now is its only showing 1 persons birthday when I know there are many within the next month. Funny the one that is showing is 5 months from now.

      Thanks for the quick reply.
      MW

      posted in Troubleshooting
      M
      MwMagicMirror
    • Multiple Calendars

      Below is the code I am attempting to use to display 2 calendars. When I launch MM i see the Birthday calendar for just a second and it gets over written with the Holiday calendar.

      Thanks
      MW

                      {
                              module: "MMM-GoogleBirthdaysProvider",
                              config: {}
                      },
      
                      {
                              module: "calendar",
                              header: "Birthdays and US Holidays",
                              position: "top_left",
                              config:
                              {
                                 calendars:
                                 [
                                    {
                                       symbol: 'birthday-cake',
                                       url: 'http://localhost:8080/mmm-googlebirthdaysprovider',
                                    },
      
                                    {
                                       symbol: "calendar-check",
                                       url: 'https://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics'
                                    }
      
                                 ]
                              }
                      },
      
      
      posted in Troubleshooting
      M
      MwMagicMirror
    • RE: MMM-GoogleBirthdaysProvider

      Hi Sam,

      So yea I can paste the URL into the browser and view my birthday calendar, however none of my birthdays are there even though I have contacts that have birthdays along with the test ones I added.
      So I’m thinking its nothing to do with MagicMirror and has to do with my google account.

      Suggestions on how to trouble shoot that? I checked in the google forums and have tried what other users suggested.

      Thanks
      MW

      posted in Troubleshooting
      M
      MwMagicMirror
    • RE: MMM-GoogleBirthdaysProvider

      One today, one tomorrow and 3 next month

      MW

      posted in Troubleshooting
      M
      MwMagicMirror
    • RE: MMM-GoogleBirthdaysProvider

      @MwMagicMirror
      I can get the calendar to display information using the secret address in ical format as another user suggested. but its all my daily items and just the birthdays. Can’t seem to get just the birthdays. There is a calendar named Birthdays in my list of calendars that I didnt add. I also tried that and it just shows No upcoming events.

      MW

      posted in Troubleshooting
      M
      MwMagicMirror
    • MMM-GoogleBirthdaysProvider

      Just wondering where does this actually get the birthdays from? My contacts mostly have birthdays but only 1 seems to show up.

      Thanks
      MW

      posted in Troubleshooting calendar birthdays
      M
      MwMagicMirror
    • Compliments Font (Crying Uncle)

      I have been trying on my own for days to get the Compliments font to be smaller.
      I’ve tried many different iterations of code in my custom.css and none of them seem to work.
      Its almost like its not even reading my custom.css

      .compliments {
        font-family: Verdana;
        font-weight: 10;
      }
      
      
      posted in Custom CSS font custom.css
      M
      MwMagicMirror
    • 1
    • 2
    • 1 / 2