Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    MagicMirror² v2.15.0 is available! For more information about this release, check out this topic.

    Noob setup

    Troubleshooting
    4
    7
    135
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • G
      Gr1dL0ck last edited by Gr1dL0ck

      Good evening everyone

      First two noob questions are:

      1. News feed
        the default new code is :

      {
      title: “New York Times”,
      url: “http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml”,
      }

      I am trying to switch it to an Australian feed from either of these sites
      https://www.news.com.au/
      https://www.abc.net.au/news

      I cant not find the rss / .xml string anywhere ??

      i would also like to add a second one for wheather warnings from this site http://www.bom.gov.au/rss/?ref=ftr for the
      New South Wales & ACT if that is possible

      1. Calendar
        I have changed the default calendar from US holidays to AU holidays and it works ok.
        what is the correct config line to reverse the date from the way it is displayed MMDDYYYY the the Australian way DDMMYYYY

      thankyou

      B 1 Reply Last reply Reply Quote 0
      • B
        BravoOscar @Gr1dL0ck last edited by

        @gr1dl0ck

        Here you have links to the RSS feeds:

        Main site: https://www.abc.net.au/news/rural/rss/
        ex of RSS feed: https://www.abc.net.au/news/feed/4535882/rss.xml

        Main site: https://www.news.com.au/more-information/rss-feeds
        ex of RSS feed: https://www.news.com.au/content-feeds/latest-news-national/

        Weather:
        http://www.bom.gov.au/fwo/IDZ00061.warnings_land_nsw.xml

        1 Reply Last reply Reply Quote 0
        • G
          Gr1dL0ck last edited by Gr1dL0ck

          Thankyou bravoOscar

          I have replaced the New York Times one with the ABC news feed, i was missing the ‘,’ after the title string

          Is this the correct code for multiple feeds ? can you see anything incorrect? the other two don’t seem to work

          module: “newsfeed”,
          position: “bottom_bar”,
          config: {
          feeds: [
          {
          title: “ABC News”,
          url: “https://www.abc.net.au/news/feed/4535882/rss.xml”
          },
          {
          title: “Weather Warnings for Australian Capital Territory.”,
          url: “http://www.bom.gov.au/fwo/IDZ00061.warnings_land_nsw.xml”
          },
          {
          tittle: “News.com”,
          url: “https://www.news.com.au/content-feeds/latest-news-national/”
          },
          ],
          showSourceTitle: true,
          showPublishDate: true,
          broadcastNewsFeeds: true,
          broadcastNewsUpdates: true

          B 1 Reply Last reply Reply Quote 0
          • B
            BravoOscar @Gr1dL0ck last edited by

            @gr1dl0ck

            		{
            			disabled: false,
            			module: "newsfeed",
            			position: "bottom_bar",
            			config: {
            				feeds: [
            					{
            						title: "News.com.au",
            						url: "https://www.news.com.au/content-feeds/latest-news-national/"
            					},
            					{
            						title: "Weather Warnings for Australian Capital Territory.",
            						url: "http://www.bom.gov.au/fwo/IDZ00061.warnings_land_nsw.xml"
            					},
            					{
            						title: "ABC News",
            						url: "https://www.abc.net.au/news/feed/4535882/rss.xml"
            					}
            					
            				],
            				showSourceTitle: true,
            				showPublishDate: true,
            				broadcastNewsFeeds: true,
            				broadcastNewsUpdates: true
            			}
            		},
            

            ABC is working, there are no actual data for weater right now.
            The news.com format is wrong, because it dosent end on rss.

            S 1 Reply Last reply Reply Quote 0
            • S
              sdetweil @BravoOscar last edited by sdetweil

              @bravooscar go to one of the aus news links, and search for rss

              u will get a page of different sources, select one and save its url

              1 Reply Last reply Reply Quote 0
              • G
                Gr1dL0ck last edited by

                Thanks @BravoOscar

                I only used the url: “https://www.news.com.au/content-feeds/latest-news-national/” as thats what was in the above post.

                Ill have a search around for a rss one.

                I noticed you put, disabled: false, as per below in your post, can you expand on what that does ? does that separate them ?

                {
                disabled: false,
                module: “newsfeed”,
                position: “bottom_bar”,
                config: {

                thanks ?

                Mykle1 1 Reply Last reply Reply Quote 0
                • Mykle1
                  Mykle1 Project Sponsor Module Developer @Gr1dL0ck last edited by

                  @gr1dl0ck said in Noob setup:

                  I noticed you put, disabled: false, as per below in your post, can you expand on what that does

                  This is an easy way to enable or disable a module when MM launches, without say, commenting out the entire module’s entry or removing the entry from the config altogether.

                  So, for the module to load at MM launch

                  disabled: false,
                  

                  For the module NOT to load at MM launch

                  disabled: true,
                  
                  1 Reply Last reply Reply Quote 0
                  • 1 / 1
                  • First post
                    Last post
                  Enjoying MagicMirror? Please consider a donation!
                  MagicMirror created by Michael Teeuw.
                  Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
                  This forum is using NodeBB as its core | Contributors
                  Contact | Privacy Policy