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

Local LCD not showing Weather module

Scheduled Pinned Locked Moved Unsolved Troubleshooting
1 Posts 1 Posters 540 Views 1 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.
  • 1 Offline
    12wsx
    last edited by Jan 1, 2019, 8:03 PM

    Hello. I have installed MagicMirror on rasberry pi zero.
    When I connect lcd monitor or tv i can’t see weather module. When i connect to Magic Mirror via computer everything is ok.
    My config file

    /* Magic Mirror Config Sample
     *
     * By Michael Teeuw http://michaelteeuw.nl
     * MIT Licensed.
     *
     * For more information how you can configurate this file
     * See https://github.com/MichMich/MagicMirror#configuration
     *
     */
    
    var config = {
    	address: "", // 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: [], // 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: "pl",
    	timeFormat: 24,
    	units: "metric",
    
    	modules: [
    		{
    			module: "alert",
    		},
    		{
    			module: "clock",
    			position: "top_left"
    		},
    		{
    			module: "calendar",
    			position: "top_left",
    			config: {
    				calendars: [
    					{
    						symbol: "calendar-check-o ",
    						url: "https://calendar.google.com/calendar/ical/"
    					}
    				]
    			}
    		},
    		{
    			module: "MMM-Solartemp",
    			position: "bottom_left",
    			header: "Solartemp",
    			config: {
    				baseURL: "http://solartemp.no-i",
    				key: "",
    				group: "",
    				}
    		},
    		{
        			module: 'MMM-Remote-Control'
        			// uncomment the following line to show the URL of the remote control on the mirror
        			// , position: 'bottom_left'
        			// you can hide this module afterwards from the remote control itself
    		},
    		{
    			 module: 'MMM-NOAA3',
    				position: 'top_right',
       				config: {
           				provider: "darksky", // From list above
           				apiKey: "",        // From one of the providers listed above
           				airKey: "YOUR API KEY",    
           				css: "NOAA3",                   // THIS MUST CONTAIN A CSS STYLE NAME 
       				userlat: "delete for security ", //MUST HAVE BOTH
           				userlon: "delete for security"  //MUST HAVE BOTH
    				}
        		},
    		]
    
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== "undefined") {module.exports = config;}
    
    

    I have installed server version and midori browser.
    I never had this problem and don’t know how to solve it.

    1 Reply Last reply Reply Quote 0
    • 1 / 1
    1 / 1
    • First post
      1/1
      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