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

    amped24

    @amped24

    0
    Reputation
    260
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    amped24 Unfollow Follow

    Latest posts made by amped24

    • Current Weather module not working
      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "en",
      	timeFormat: 12,
      	units: "imperial",
      
      	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: "Omaha",
      				locationID: "5074472",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "d2c62a1048cc5a3a2e586597ce29dc45"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "Omaha",
      				locationID: "5074472",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "9ab5aef55af5581932e453668b57dd2b"
      			}
      		},
      {
      				module: 'random_quotes',
      				position: 'bottom_bar',
      				config: {
      						// The config property is optional
      						// Without a config, a random quote is shown,
      						// selected from all of the categories available.
      				}
      			},
      		{
      			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
      			}
      		},
      	
      			{
      	module: 'MMM-Globe',
      	position: 'center',
      	config: {
      		style: 'geoColor',
      		imageSize:400 ,
      		ownImagePath:'',
      		updateInterval: 10*60*1000
      	}
      },
      				{
          			module: 'MMM-ATM',
         			 position: 'top_left',              // Works well anywhere
          			config: {
      				multipleChoice: "Yes",        // No = just the ? then the answer
      				useHeader: true,              // true if you want a header
      				header: "Not another trivia module!",   // Any text you want
      				maxWidth: "250px",             // Stretch or constrain according to region
          			}
      	},
      
      			
      
      			{
      	module: "MMM-cryptocurrency",
      	position: "top_right",
      	config: {
      		currency: ['ethereum', 'bitcoin', 'monero'],
      		conversion: 'USD',
      		showUSD: false,
      		headers: ['change24h', 'change1h', 'change7d'],
      		displayType: 'logoWithChanges',
      		showGraphs: true
      	}
      }
      
      ]
      };
      
      posted in Troubleshooting
      A
      amped24