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

    Topics

    • O

      Calendar excludedEvents behavior not as expected?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      1
      0 Votes
      1 Posts
      460 Views
      O
      I am having trouble with the excludedEvents parameter in the calendar module. I can get some words to filter but not others. For instance I if I have the following two events on the calendar: School Early Dismissal Roger’s Special - Art If I enter ‘Early’ in the excludedEvents array then as expected the School Early Dismissal goes away. If I enter ‘Roger’ or ‘Art’ or ‘Special’ then I can’t get the second event to filter out. I have 3 calendars. I tried eliminating all but the one that pulls the “Roger’s Special - Art” event and still no luck. I am starting to think that there is something about that calendar ics that prevents events from being filtered? Is this possible? module: "calendar", header: "Calendar", position: "top_left", config: { maxTitleLength: "30", timeFormat: "absolute", nextDaysRelative: true, titleReplace: {'SPECIAL MEETING':'meeting'}, displaySymbol: false, //maximumNumberOfDays: "62", fade: false, excludedEvents: ['Special'], calendars: [ { // symbol: "calendar-check-o ", url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics", maxTitleLength: "17" },
    • O

      GIFs upon motion detection

      Watching Ignoring Scheduled Pinned Locked Moved Requests
      2
      0 Votes
      2 Posts
      2k Views
      E
      This is a cute idea. I might pick this up if someone else doesn’t…
    • O

      Help with MMM-PIR-Sensor tvservice logical evaluation

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      3
      0 Votes
      3 Posts
      2k Views
      O
      I figured it out. There are missing brackets for the if statement. In node_helper.js: From: if (data.indexOf("0x120002") !== -1) exec("/opt/vc/bin/tvservice --preferred && chvt 6 && chvt 7", null); To: if (data.indexOf("0x120002") !== -1){ exec("/opt/vc/bin/tvservice --preferred && chvt 6 && chvt 7", null); } @paviro
    • O

      MMM-PiLights notification trigger for PIR

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      2
      0 Votes
      2 Posts
      1k Views
      O
      The answer to my question is to add the sendNotification line in the MMM-PiLights.js as follows: From: socketNotificationReceived: function(notification, payload) { if (notification === "USER_PRESENCE"){ this.sendNotification(notification, payload) } To: socketNotificationReceived: function(notification, payload) { if (notification === "USER_PRESENCE"){ this.sendNotification(notification, payload); this.sendNotification('PILIGHTS_SEQUENCE', 'blue_pulse'); } Unfortunately I have realized that I want to do something more elaborate then the PiLights module allows so instead I am now calling a python script instead.
    • 1 / 1