MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. sullivnc
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    sullivnc

    @sullivnc

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

    sullivnc Unfollow Follow

    Latest posts made by sullivnc

    • RE: Help with config file

      Thanks guys, appreciate the help.

      posted in Troubleshooting
      S
      sullivnc
    • Help with config file

      Can anyone tell me what I did wrong with my config file? Anywhere you see ### is where I removed personal data.

      var config = {
              port: 8080,
              ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
      
              language: "en",
              timeFormat: 12,
              units: "imperial",
      
              modules: [
                      {
                              module: "clock",
                              position: "top_left'"
                              config: {
                                      timeFormat: 12,
                                      displaySeconds: true,
                                      showPeriod: true,
                                      showDate: true,
                                      displayType: "digital",
                                      timezone: "America/New_York",
                      },
                      {
                              module: "calendar",
                              position: "top_left",
                              config: {
                                      calendars: [
                                              {
                                                      symbol: "calendar-check-o ",
                                                      url: "###"
                                              }
                                      ]
                              }
                      },
                      {
                              module: "compliments",
                              position: "lower_third"
                      },
                      {
                              module: "currentweather",
                              position: "top_right",
                              config: {
                                      location: "###",
                                      locationID: "###",  //ID from http://www.openweathermap.org
                                      appid: "###",
                                      roundTemp: true,
                                      showPeriod: true,
                                      showPeriodUpper: true,
                                     showHumidity: true,
                              }
                      },
                      {
                              module: "weatherforecast",
                              position: "top_right",
                              header: "Weather Forecast",
                              config: {
                                      location: "###",
                                      locationID: "###",  //ID from http://www.openweathermap.org
                                      appid: "###",
                                      roundTemp: true,
                                      showRainAmount: true,
                                      colored: trtue,
                              }
                      },
                      {
                              module: "newsfeed",
                              position: "bottom_bar",
                              config: {
                                      feeds: [
                                              {
                                                      title: "The Atlantic",
                                                      url: "https://www.theatlantic.com/feed/best-of/",
                                              },
                                              {
                                                      title: "BBC World",
                                                     url: "feeds.bbci.co.uk/news/world/rss.xml",
                                              }
                                      ],
                                      showSourceTitle: true,
                                      showPublishDate: true,
                                      showDescription: true,
                              }
                      },
              ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      
      posted in Troubleshooting
      S
      sullivnc