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

    Alain

    @Alain

    0
    Reputation
    97
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Alain Unfollow Follow

    Latest posts made by Alain

    • RE: MMM-SmartWebDisplay : display web contents (including YouTube) on your MM

      @AgP42 Hi - sorry for not replying sooner.
      Full config file as follows:

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
      address: "0.0.0.0", // Address to listen on, can be:
                           // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
                           // - another specific IPv4/6 to listen on a specific interface
                           // - "", "0.0.0.0", "::" to listen on any interface
                           // Default, when address config is left out, is "localhost"
      port: 8080,
      ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "192.168.0.43", "192.168.0.46"], // Set [] to allow all IP addresses
                                                            // or add a specific IPv4 of 192.168.1.5 :
                                                            // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
                                                            // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
                                                            // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      language: "en",
      timeFormat: 24,
      units: "metric",
      
      modules: [
      {
      module: "alert",
      },
      {
      module: "updatenotification",
      position: "top_bar"
      },
      {
      module: "clock",
      position: "top_left"
      },
      {
      module: "calendar",
      header: "US Holidays",
      position: "bottom_right",
      config: {
      calendars: [
      {
      symbol: "calendar-check",
      url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics" }
      ]
      }
      },
      {
      module: "compliments",
      position: "middle_center"
      },
      {
      module: "currentweather",
      position: "top_left",
      config: {
      location: "Satellite Beach",
      locationID: "4172173",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      appid: "xxx"
      }
      },
      {
      module: "weatherforecast",
      position: "bottom_left",
      header: "Weather Forecast",
      config: {
      location: "Satellite Beach",
      locationID: "4172173",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      appid: "xxx"
      }
      },
      {
      module: "newsfeed",
      position: "bottom_bar",
      config: {
      feeds: [
      {
      title: "New York Times",
      url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      }
      ],
      showSourceTitle: true,
      showPublishDate: true,
      broadcastNewsFeeds: true,
      broadcastNewsUpdates: true
      }
        },
      {
            module: "MMM-Remote-Control",
      // position: "top_right",
              // uncomment the following line to show the URL of the remote control on the mirror
              // you can hide this module afterwards from the remote control itself
              config: {
                  apiKey: "xxx"
              }
          },
      {
      module: "MMM-SmartWebDisplay",
      position: "top_right", // This can be any of the regions.
      config: {
      // See 'Configuration options' for more information.
      logDebug: true, //set to true to get detailed debug logs. To see them : "Ctrl+Shift+i"
      height:"300px", //hauteur du cadre en pixel ou %
      width:"525px", //largeur
                      updateInterval: 1, //in min. Set it to 0 for no refresh (for videos)
                      NextURLInterval: 0, //in min, set it to 0 not to have automatic URL change. If only 1 URL given, it will be updated
                      displayStateInfos: false, //to display if the module is on autoloop, or stop.
                      displayLastUpdate: true, //to display the last update of the URL
      displayLastUpdateFormat: 'HH:mm:ss', //format of the date and time to display
                      url: ["https://xxx/public/magic1.html"], //source of the URL to be displayed
      scrolling: "no" // allow scrolling or not. html 4 only
      }
        },
      {
      module: "MMM-PIR-Sensor",
      config: {
      sensorPin: 22,
      powerSavingNotification: false,
      powerSavingDelay: 100
      }
      },
      {
              module: "MMM-Astronauts",
              position: "bottom_center",
              config: {
      useHeader: false,                // true if you want a header      
      header: "",                      // Change in config file. useHeader must be true
      maxWidth: "300px",
      animationSpeed: 3000,            // fade speed
              }
          },
      ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in Utilities
      A
      Alain
    • RE: MMM-SmartWebDisplay : display web contents (including YouTube) on your MM

      @ueffchen I have the exact same problem. However, for some reason, when I turn the “displayLastUpdate:” to “true”, it begins updating at the interval set in “updateInterval”. Turn it back to “false”, and it stops updating.

      Not ideal, since it displays a line of information I don’t want to see; but it does refresh.

      If someone could help, I would appreciate it too!

      Thank you
      Alain

      posted in Utilities
      A
      Alain