• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Noob setup

Scheduled Pinned Locked Moved Troubleshooting
7 Posts 4 Posters 1.1k Views 4 Watching
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 Offline
    Gr1dL0ck
    last edited by Gr1dL0ck Feb 12, 2021, 8:35 AM Feb 12, 2021, 8:33 AM

    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 Feb 12, 2021, 9:10 AM Reply Quote 0
    • B Offline
      BravoOscar @Gr1dL0ck
      last edited by Feb 12, 2021, 9:10 AM

      @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 Offline
        Gr1dL0ck
        last edited by Gr1dL0ck Feb 12, 2021, 9:39 AM Feb 12, 2021, 9:38 AM

        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 Feb 12, 2021, 8:16 PM Reply Quote 0
        • B Offline
          BravoOscar @Gr1dL0ck
          last edited by Feb 12, 2021, 8:16 PM

          @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 Feb 13, 2021, 1:12 AM Reply Quote 0
          • S Away
            sdetweil @BravoOscar
            last edited by sdetweil Feb 13, 2021, 1:12 AM Feb 13, 2021, 1:12 AM

            @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

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            1 Reply Last reply Reply Quote 0
            • G Offline
              Gr1dL0ck
              last edited by Feb 13, 2021, 3:52 AM

              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 ?

              M 1 Reply Last reply Feb 13, 2021, 3:22 PM Reply Quote 0
              • M Offline
                Mykle1 Project Sponsor Module Developer @Gr1dL0ck
                last edited by Feb 13, 2021, 3:22 PM

                @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,
                

                Create a working config
                How to add modules

                1 Reply Last reply Reply Quote 0
                • 1 / 1
                1 / 1
                • First post
                  1/7
                  Last post
                Enjoying MagicMirror? Please consider a donation!
                MagicMirror created by Michael Teeuw.
                Forum managed by Sam, technical setup by Karsten.
                This forum is using NodeBB as its core | Contributors
                Contact | Privacy Policy