• 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.

Magic Mirror minus the mirror

Scheduled Pinned Locked Moved General Discussion
28 Posts 10 Posters 26.6k Views 15 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.
  • B Offline
    billp100 @jaymichael78
    last edited by Mar 7, 2017, 2:27 AM

    @jaymichael78 Here you go…

    /* Magic Mirror Config Sample
     *
     * By Michael Teeuw http://michaelteeuw.nl
     * MIT Licensed.
     */
    
    var config = {
    	port: 8080,
    	ipWhitelist: ["192.168.1.18", "::ffff:127.0.0.1", "::1"],
    
    	language: 'en',
    	timeFormat: 12,
    	units: 'imperial',
    
    	modules: [
    		{
    			module: 'alert',
    		},
    		{
    			module: 'clock',
    			position: 'top_left'
    			
    		},
    		{
    			module: 'calendar_monthly',
    			position: 'top_left',
    			config: {
    				cssStyle:'slate'
    				}
    		},
    		{
    			module: 'calendar',
    			header: ' Bill  Janice  Vinny ',
    			position: 'top_left',
    			config: {
    				colored: 'true',
    				calendars: [
    					{
    						symbol: 'male',
    						url: 'Calendar link',
    						color:'#4286f4'
    					},
    					{
    						symbol: 'child',
    						url: 'Calendar link',
    						color:'#33cc33'
    					},
    					{
    						symbol: 'female',
    						url: 'Calendar link',
    						color:'#eb42f4'
    					}
    					],
    				        }
    		},
    		{
    			module: 'calendar',
    			header: 'Important Dates',
    			position: 'top_left',
    			config:{
    				colored: 'true',
    				calendars: [
    					{
    						symbol: 'users',
    						url: 'Calendar link',
    						color: '#ffff00'
    					},
    					{	symbol: 'birthday-cake',
    						url: 'Calendar link',
    						color: '#b380ff'
    					}
    					],
    					}
    		},
    		{
    			module: 'MMM-Wunderlist',
    			position: 'bottom_center',
    			header: 'To-Do List',
    			config: {
    				accessToken: 'your access token',
    				clientID: 'your client id',
    				lists: ["MM List"]
    				}
    		},			
    		{
    		
    			module: 'MMM-WunderGround',
        			position: 'top_right',
        			config: {
            		apikey: 'your api key', // private; don't share!
            		pws: 'pws:KNYHUNTI41', //culemborg
            		coloricon: 'true',
    			hourly: '1',
            		fctext: '1',
            		layout: "horizontal",
    			fcdaycount: "3",
            		fcdaystart: "0",
            		hourlyinterval: "3",
            		hourlycount: "2",
            		alerttime: 10000,
            		alerttruncatestring: "english:",
        			roundTmpDecs: 1,
        			UseCardinals: 0,
        			layout: "horizontal",
        			sysstat: 0
    		    		}
    		},
    		{
    			module: 'newsfeed',
    			position: 'bottom_center',
    			config: {
    				feeds: [
    					{
    						title: "Fox News",
    						url: "http://feeds.foxnews.com/foxnews/latest?format=xml"
    					}
    				],
    				showSourceTitle: true,
    				showPublishDate: true
    			}
    		},
    {
                            module: 'MMM-Traffic',
                            position: 'bottom_center',
                            classes: 'dimmed medium', //optional, default is 'bright medium', only applies to commute info not route_name
                            config: {
                            api_key: 'your api key',
                            mode: 'driving',
                            origin: 'starting address',
                            destination: 'destination address',
                            route_name: 'nickname',
                            show_summary: true,
                            changeColor: true,
                            showGreen: true,
                            limitYellow: 5, //Greater than 5% of journey time due to traffic
                            limitRed: 20, //Greater than 20% of journey time due to traffic
                            traffic_model: 'pessimistic',
                            interval: 120000 //2 minutes
                        		}
    },
    {
    			module: 'MMM-MTA',
      			position: 'bottom_center',
      			config: {
        			sStation: 'DPK',
        			mtaAPIKey: '9e9374cf6751033431c1f54a4e7576c3' //API KEY needs to be requested from datamine.mta.info
      },                        
    },
    {
    			module: 'MMM-NHL',
    			position: 'top_right',
    			config: {
    				colored: 'true',
    				focus_on: [2],
    				datesToLookAhead: '7',
    				}
    },
    	]
    
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== 'undefined') {module.exports = config;}
    
    Y P 2 Replies Last reply Mar 7, 2017, 5:07 AM Reply Quote 1
    • B Offline
      billp100 @jaymichael78
      last edited by Mar 7, 2017, 2:30 AM

      @jaymichael78 Here is the custom css

      /*****************************************************
       * Magic Mirror                                      *
       * Custom CSS                                        *
       *                                                   *
       * By Michael Teeuw http://michaelteeuw.nl           *
       * MIT Licensed.                                     *
       *                                                   *
       * Add any custom CSS below.                         *
       * Changes to this files will be ignored by GIT. *
       *****************************************************/
       header {
       text-transform: uppercase;
       font-family: "Roboto Condensed";
       font-size: 20px;
       font-weight: 300;
       }
       body {
       margin: 30px;
       position: absolute;
       height: calc(100%-50px);
       width: calc(100%-50px);
       background-image: url('bg1.jpg'); 	
       backgroung-repeat: no-repeat;
       background-size: 1920;
       }
      
      .newsfeed, div#module_7_newsfeed {
       width: 550px;
       font-size: 12px;
      }
      
      
      J 1 Reply Last reply Mar 7, 2017, 12:25 PM Reply Quote 1
      • Y Offline
        yawns Moderator @billp100
        last edited by yawns Mar 7, 2017, 5:08 AM Mar 7, 2017, 5:07 AM

        @billp100
        Boolean values and numbers should be written without " or ’

        B 1 Reply Last reply Mar 7, 2017, 1:31 PM Reply Quote 1
        • J Offline
          jaymichael78 @billp100
          last edited by Mar 7, 2017, 12:25 PM

          @billp100 thanks! This really is nice. You did good work. I appreciate you sharing this seeing the two side by side really helps me understand how to manage this better. Big week, will get back fo it this weekend.

          1 Reply Last reply Reply Quote 0
          • B Offline
            billp100 @yawns
            last edited by Mar 7, 2017, 1:31 PM

            @yawns Thank you for the clarification. I wasn’t sure why some values needed the " or ', basically if the config file loaded, I counted that as a success

            @jaymichael78 Thanks for the compliment. Next step is building a frame for it to mount on the fridge. Plus I’ll be still tinkering away at the contents.

            1 Reply Last reply Reply Quote 0
            • Y Offline
              yawns Moderator
              last edited by Mar 7, 2017, 1:35 PM

              Some explanation from @strawberry-3-141

              'false' is a string and a string always represents the boolean true, so 'test', 'true' and 'false' all become true it doesn’t matter what the content of the string is.

              There are multiple types:

              • object {}
              • array []
              • number 2, -17 and 3.14
              • string "I am a string" and 'me too'
              • boolean true or false
              1 Reply Last reply Reply Quote 2
              • O Offline
                ooom416354
                last edited by Mar 7, 2017, 2:51 PM

                @billp100 this is spectacular.

                1 Reply Last reply Reply Quote 0
                • C Offline
                  cyberphox
                  last edited by Mar 8, 2017, 7:55 PM

                  i use Wunderground weather…why can i not get these fabulous weather icons!
                  going to compare your CSS and config files! thanks

                  Full time Dad, DJ and entertainer and lover of technology.

                  S 1 Reply Last reply Mar 8, 2017, 8:01 PM Reply Quote 0
                  • S Offline
                    strawberry 3.141 Project Sponsor Module Developer @cyberphox
                    last edited by Mar 8, 2017, 8:01 PM

                    @cyberphox coloricon: true

                    Please create a github issue if you need help, so I can keep track

                    C 1 Reply Last reply Mar 9, 2017, 11:01 PM Reply Quote 1
                    • C Offline
                      cyberphox @strawberry 3.141
                      last edited by Mar 9, 2017, 11:01 PM

                      @strawberry-3.141 definitely have that set in my config file. cleared out everything in my custom.css so nothing would interfere…maybe my location doesn’t get pretty realistic icons…sigh

                      Full time Dad, DJ and entertainer and lover of technology.

                      Y 1 Reply Last reply Mar 10, 2017, 5:07 AM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 2 / 3
                      2 / 3
                      • First post
                        18/28
                        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