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

    Edswald

    @Edswald

    1
    Reputation
    709
    Profile views
    13
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Edswald Unfollow Follow

    Best posts made by Edswald

    • RE: Cant figure out how to install a module in the config.js

      @broberg Thank you very much it worked finally :)

      posted in Troubleshooting
      E
      Edswald

    Latest posts made by Edswald

    • RE: Default current weather module help.

      @Mykle1 said in Default current weather module help.:

      imperial

      Thank you that did the trick :)

      posted in Troubleshooting
      E
      Edswald
    • Default current weather module help.

      Im trying to change the current weather module from Celsius to Fahrenheit and i dont think im doing right its showing degrees i think heres some screen shots . 0_1493249126177_2017-04-26-172005_1824x984_scrot.png 0_1493249136782_2017-04-26-172316_1824x984_scrot.png

      posted in Troubleshooting
      E
      Edswald
    • How do i change my screen orientation to landscape.

      Hi i was wondering how to change to the orientation of the screen to landscape i cant seem to figure it out.

      posted in Troubleshooting
      E
      Edswald
    • RE: Cant figure out how to install a module in the config.js

      @broberg Ahhh i see what you mean thank you again :)

      posted in Troubleshooting
      E
      Edswald
    • RE: Cant figure out how to install a module in the config.js

      0_1493145766820_2017-04-25-124034_1280x1024_scrot.png

      posted in Troubleshooting
      E
      Edswald
    • RE: Cant figure out how to install a module in the config.js

      /* 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: 24,
      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: "New York",
      			locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "YOUR_OPENWEATHER_API_KEY"
      		}
      	},
      	{
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "New York",
      			locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "YOUR_OPENWEATHER_API_KEY"
      		}
      	},
      	{
      		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: ‘twitControl’,
      position: ‘top_left’,
      config: {
      maxNumTweets: 5,
      streamType: ‘followings’,
      api_keys: {
      consumer_key: ‘fill’,
      consumer_secret: ‘fill’,
      access_token_key: ‘fill’,
      access_token_secret: ‘fill’
      }
      }
      },

      ]
      

      },
      {
      module: ‘MMM-TwitterTrendsByPlace’,
      position: ‘bottom_left’,
      config: {
      // visit the url below for the twitter keys/tokens
      // https://dev.twitter.com/oauth/overview/application-owner-access-tokens
      consumer_key: ‘fill’,
      consumer_secret: ‘fill’,
      access_token_key: ‘fill’,
      access_token_secret: ‘fill’,
      // set the display name/title for the place
      placeName: ‘New York, NY’,
      // set the woeid for the place, see documentation for more
      // http://woeid.rosselliot.co.nz/lookup/
      placeWoeid: ‘2459115’,
      }
      };
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== “undefined”) {module.exports = config;}

      posted in Troubleshooting
      E
      Edswald
    • RE: Cant figure out how to install a module in the config.js

      @broberg umm can you help me again now im trying to install another twitter module with no luck :(

      posted in Troubleshooting
      E
      Edswald
    • RE: Cant figure out how to install a module in the config.js

      @broberg Thank you very much it worked finally :)

      posted in Troubleshooting
      E
      Edswald
    • RE: Cant figure out how to install a module in the config.js

      @broberg ok here you go

      /* 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: 24,
      	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: "New York",
      				locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "New York",
      				locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      		{
      			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: 'twitControl',
      			position: 'top_left',
      			config: {
      				maxNumTweets: 5,
      				streamType: 'followings',
      				api_keys: {
      	
      				}
      			}
      		},
      
      	]
      
      },
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in Troubleshooting
      E
      Edswald
    • RE: Cant figure out how to install a module in the config.js

      @broberg is this right me an my team mate are here trying to see if we missed anything. Its still not running.0_1493061502651_2017-04-24-131726_1280x1024_scrot.png

      posted in Troubleshooting
      E
      Edswald