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

    Posts

    Recent Best Controversial
    • RE: Fresh install
      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       */
      
      var config = {
              port: 8080,
      
              language: 'en',
              timeFormat: 24,
              units: 'metric',
      
              modules: [
                      {
                              module: 'alert',
                              config: {
                                      alert_effect: 'genie',
                                      welcome_message: '*** Command Center started.'
                              },
                      },
                      {
                              module: 'clock',
                              position: 'top_left'
                      },
                      {
                              module: 'calendar',
                              header: 'CA Holidays',
                              position: 'top_left',
                              config: {
                                      calendars: [
                                              {
                                                      symbol: 'calendar-check-o ',
                                                      url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
                                              }
                                      ]
                              }
                      },
                      {
                              module: 'currentweather',
                              position: 'top_right',
                              config: {
                                      location: 'Saint-Eustache,CA',
                                      locationID: '',  //ID from bulk.openweather.org/sample/
                                      appid: 'fa2606456c60a3cb0feceaad88b5f4be'
                              }
                      },
                      {
                              module: 'weatherforecast',
                              position: 'top_right',
                              header: 'Weather Forecast',
                              config: {
                                      location: 'Saint-Eustache,CA',
                                      locationID: '5128581',  //ID from bulk.openweather.org/sample/
                                      appid: 'fa2606456c60a3cb0feceaad88b5f4be'
                              }
                      },
                      {
                              module: 'newsfeed',
                              position: 'bottom_bar',
                              config: {
                                      feeds: [
                                              {
                                                      title: "LaPresse",
                                                      url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                                              },
                                              {
                                                      title: "BBC",
                                                      url: "http://feeds.bbci.co.uk/news/video_and_audio/news_front_page/rss.xml?edition=uk",
                                              },
                                             ],
                                      showSourceTitle: true,
                                      showPublishDate: true
                              }
                      },
              ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== 'undefined') {module.exports = config;}
      

      And yes I have access to Internet, weather is working ;)

      posted in Troubleshooting
      PointPubMediaP
      PointPubMedia
    • Fresh install

      Hey guys…

      Just finish installing a fresh install of MM2 with Raspberry pi 3, everything looks good except having issue with 2 default modules.

      News feed and Calendar are never showing something. Even using the default feed and calendar!

      posted in Troubleshooting
      PointPubMediaP
      PointPubMedia
    • 1 / 1