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

MMM-NOAA3 - No icon

Scheduled Pinned Locked Moved Solved Troubleshooting
11 Posts 3 Posters 7.2k Views 3 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.
  • J Offline
    JRCelis
    last edited by JRCelis Aug 24, 2018, 12:51 PM Aug 24, 2018, 3:52 AM

    Hello,

    My MMM-NOAA3 module is working partially, the four days forecast does not show up and the Icon at the top does not appear. How can I fix it? Thanks

    0_1535082601072_CropperCapture[21].jpg

    :::

    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"
    	},
    	{
    		disable: true,
    		module: "currentweather",
    		position: "top_right",
    		config: {
    			location: "London",
    			locationID: "60585xx",  //ID from http://www.openweathermap.org/help/city_list.txt
    			appid: "1622a28870ff593b300001xxxxxxxxxx"
    		}
    	},
    	{
    		disabled: true,
    		module: "weatherforecast",
    		position: "top_right",
    		header: "Weather Forecast",
    		config: {
    			location: "London",
    			locationID: "6058560",  //ID from http://www.openweathermap.org/help/city_list.txt
    			appid: "1622a28870ff593b300001xxxxxxxxxx"
    		}
    	},
    	{ 
    		module: 'MMM-NOAA3',
    		position: 'top_right',
    		config: {
       			provider: "openweather", // From list above
       			apiKey: "1622a28870ff593b300001xxxxxxxxxx",        // From one of the providers listed above
       			airKey: "MdzfQP4dSXbMCyxxx",    
       			css: "NOAA4"                   // THIS MUST CONTAIN A CSS STYLE NAME 
    		}
    	},
    	{
    		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
    		}
    	},
    ]
    

    :::

    1 Reply Last reply Reply Quote 0
    • C Offline
      cowboysdude Module Developer
      last edited by Oct 2, 2018, 2:32 AM

      You can mark this as solved…it was ;) Make sure you have ALL the icon images in your directory :)

      1 Reply Last reply Reply Quote 0
      • R Offline
        richland007
        last edited by Nov 14, 2018, 12:48 AM

        @cowboysdude How do we make sure of that???.. cause i have the same problem and the text its a little bit too large i think and not aligned properly with the rest of the modules …i have it positioned “top_right”

        0_1542156466867_20181113_183538.jpg

        Always Thankful for your buddy
        Denis

        1 Reply Last reply Reply Quote 0
        • R Offline
          richland007
          last edited by Nov 17, 2018, 5:04 PM

          @cowboysdude How do i fix the formatting of this module please …have a look at the picture above it seems like its working but it is kinda jacked :)
          D

          1 Reply Last reply Reply Quote 0
          • R Offline
            richland007
            last edited by Nov 17, 2018, 7:19 PM

            It does not give the name of the city but the weather background and the icon are visible… so the Name of the city and the 4 day forecast is missing also the alignment is messed up with large letters is not properly centered at all
            D

            1 Reply Last reply Reply Quote 0
            • C Offline
              cowboysdude Module Developer
              last edited by cowboysdude Nov 18, 2018, 2:13 AM Nov 18, 2018, 2:12 AM

              Looks like something else is messing it up…what’s in your custom.css file?

              and/or do you have a css file defined in your config section in NOAA?

              R 1 Reply Last reply Nov 19, 2018, 12:31 AM Reply Quote 1
              • R Offline
                richland007 @cowboysdude
                last edited by Nov 19, 2018, 12:31 AM

                @cowboysdude On my MM custom.css file i added the following later on after taking @Sean advice to enhance the background and the contours of the modules

                 * 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. *
                 *****************************************************/
                
                 body {
                
                .module {
                  background-color:rgba(0,0,0,0.5);
                  border-radius: 20px;
                  padding:10px;
                }
                 	
                 }
                
                

                on my config.js file under MMM-NOAA3 i have

                css: "NOAA3",                   // THIS MUST CONTAIN A CSS STYLE NAME 
                

                I tried changing it to other NOAA styles such as 4 etc. and adding MMM-NOAA3 or MMM-NOAA3.css within the parenthesis but no change.

                0_1542587353719_20181118_181527.jpg

                Should i uninstall it and installed again??
                i have the version that works with the MMM-WeatherBackground from @Sean and the background does work correctly to whatever the weather says.

                Thanks again for your help
                Denis

                C 1 Reply Last reply Nov 19, 2018, 3:22 AM Reply Quote 0
                • C Offline
                  cowboysdude Module Developer @richland007
                  last edited by Nov 19, 2018, 3:22 AM

                  @richland007 Totally delete that install something went VERY wrong there.

                  Delete the entire directory and go another ‘git clone’…
                  Go to MMM-NOAA3 and type ‘npm install’…

                  R 1 Reply Last reply Nov 19, 2018, 5:04 AM Reply Quote 0
                  • R Offline
                    richland007 @cowboysdude
                    last edited by Nov 19, 2018, 5:04 AM

                    @cowboysdude Re-did everything as you said but no change same result, same look, no forecast
                    :(
                    I deleted the whole directory git clone again… no luck
                    Denis

                    1 Reply Last reply Reply Quote 0
                    • C Offline
                      cowboysdude Module Developer
                      last edited by Nov 20, 2018, 3:31 AM

                      What provider are you using?

                      R 1 Reply Last reply Jan 6, 2019, 6:45 AM Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      • First post
                        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