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

    mar4pack

    @mar4pack

    0
    Reputation
    422
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    mar4pack Unfollow Follow

    Latest posts made by mar4pack

    • RE: Weather info not showing up on screen

      Well, I got the weather underground at least up and going. Only thing I can see now with it is the forecast is all incorrect. Pretty sure its in the mid 70’s not the low 50’s. Not sure what is wrong within that module. Cant seem to find any help or info in regards to it.

      posted in Troubleshooting
      M
      mar4pack
    • RE: Weather info not showing up on screen

      Automatic install. Following one of the guides on here where you end up removing unnecessary programs and cleaning up the pi a little bit.

      posted in Troubleshooting
      M
      mar4pack
    • RE: Weather info not showing up on screen

      Still cannot get it to work. I created another appid and that does not work either. Entered both id’s in correctly and it wont load. Any other suggestions?

      posted in Troubleshooting
      M
      mar4pack
    • RE: Weather info not showing up on screen

      @Mykle1

      Yes clock works and other modules load. Oddly enough I was able to get the weather underground module working.

      posted in Troubleshooting
      M
      mar4pack
    • RE: Weather info not showing up on screen

      /* Magic Mirror Config Sample
      *

      • By Michael Teeuw http://michaelteeuw.nl
      • MIT Licensed.
        */

      var config = {
      port: 8080,
      ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”], // Set [] to allow all IP addresses.

      language: "en",
      timeFormat: 12,
      units: "metric",
      
      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_left"
      	},
      	{
      		module: "calendar",
      		header: "US Holidays",
      		position: "top_left",
      		config: {
      			calendars: [
      				{
      					symbol: "calendar-check-o ",
      					url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      				}
      			]
      		}
      	},
      	{
      		module: "compliments",
      		position: "lower_third"
      	},
      	{
      		module: "currentweather",
      		position: "top_right",
      		config: {
      			location: "Midwest City, OK",
      			locationID: "4542765",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      		}
      	},
      	{
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "Midwest City, OK",
      			locationID: "4542765",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      		}
      	},
      	{
      		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
      		}
      	},
      ]
      

      };

      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== “undefined”) {module.exports = config;}

      posted in Troubleshooting
      M
      mar4pack
    • Weather info not showing up on screen

      Total newbie to this. I have everything up and running, but for some reason my current weather and weather forecast will not show up on my screen. I have my location id entered in, and my API key also entered into the config file. I have read other forums on the topic, but still cannot get the info to show on my screen. Any help would be appreciated.

      posted in Troubleshooting
      M
      mar4pack