• 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
  1. Home
  2. Sebi76
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
S
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 2
  • Posts 13
  • Groups 0

Sebi76

@Sebi76

3
Reputation
455
Profile views
13
Posts
0
Followers
0
Following
Joined Feb 25, 2018, 3:57 PM
Last Online Oct 21, 2021, 9:14 AM

Sebi76 Unfollow Follow

Best posts made by Sebi76

  • RE: MMM-Snow Activation at Month

    @cowboysdude said in MMM-Snow Activation at Month:

    var D = new Date();
    var month = D.getmonth;
    If (month === “11”) {
    magic happens here…
    }

    ok i found the Problem

    not var month = D.getmonth; but var month = D.getmonth();

    posted in Development
    S
    Sebi76
    Dec 24, 2018, 10:34 PM
  • RE: MMM-Facial-Recognition-OCV3 cant run toold.capture.py

    I found the issue.

    Change in capture.py

    from config import ToolsConfig -> from .config import ToolsConfig

    posted in Troubleshooting
    S
    Sebi76
    Dec 22, 2018, 1:06 PM

Latest posts made by Sebi76

  • RE: MMM-DWD-WarnWeather - Wetterwarnungen

    Hello,

    this is my Problem after i update MagicMirror.

    [20.10.2021 11:13.03.190] [ERROR] WARNING! Could not load config file. Starting with default configuration. Error found: Error: Cannot find module ‘request’
    Require stack:

    • /home/pi/MagicMirror/modules/MMM-DWD-WarnWeather/node_helper.js
    • /home/pi/MagicMirror/js/app.js
    • /home/pi/MagicMirror/js/electron.js
    • /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js

    This “default_app.asar/” is only a file not a Folder!

    posted in Utilities
    S
    Sebi76
    Oct 20, 2021, 9:18 AM
  • RE: MMM-Snow Activation at Month

    @cowboysdude said in MMM-Snow Activation at Month:

    var D = new Date();
    var month = D.getmonth;
    If (month === “11”) {
    magic happens here…
    }

    ok i found the Problem

    not var month = D.getmonth; but var month = D.getmonth();

    posted in Development
    S
    Sebi76
    Dec 24, 2018, 10:34 PM
  • RE: One-line switch to enable / disable modules

    It’s works not :grimacing_face:

    /* 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
     *
     */
    
    const DISABLED = {};
       
        DISABLED.clock = false;
    
    },
    
    
    var config = {
    	address: "0.0.0.0", // 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: "de",
    	timeFormat: 24,
    	units: "metric",
    
    
    
    	modules: [
    			
      
    		{
    			module: "alert",
    			classes:  'default everyone',
    			},
    		{
    			module: "updatenotification",
    			position: "top_bar",
    			classes:  'default everyone', 
    			},
    		{
    			module: "clock",
    			position: "top_left",
    			classes:  'default everyone',
    			//disabled: DISABLED.clock			
    		},
    		
    	    ]
    
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== "undefined") {module.exports = config;}
    
    
    posted in Feature Requests
    S
    Sebi76
    Dec 24, 2018, 5:51 PM
  • RE: One-line switch to enable / disable modules

    @michael5r said in One-line switch to enable / disable modules:

    I’ve done this in my config.js file:

    Where do you placesd this in you config. Like this?

    
    	modules: [
    			
    const DISABLED = {};
       
        DISABLED.clock = false;
    
    }
      
    		{
    			module: "alert",
    			classes:  'default everyone',
    			},
    		{
    			module: "updatenotification",
    			position: "top_bar",
    			classes:  'default everyone', 
    			},
    		{
    			module: "clock",
    			position: "top_left",
    			classes:  'default everyone',
    			disabled: DISABLED.clock			
    		},
    		
    	    ]
    
    };
    
    posted in Feature Requests
    S
    Sebi76
    Dec 24, 2018, 11:06 AM
  • RE: One-line switch to enable / disable modules

    disabled: “true”, it doesnt work

    posted in Feature Requests
    S
    Sebi76
    Dec 23, 2018, 11:10 AM
  • MMM-GoogleBirthdayProvider

    The Modul MMM-GoogleBirthdayProvider dont work. It comes no issue at the console…Everything starts normally and without errors

    At the Screen is only the Message : No Dates

    When I enter the calendar URL into the browser.
    http://localhost:8080/mmm-googlebirthdayprovider

    Then I get my .ics.
    So the connection seems to fit perfectly. But where is the Problem now?

    posted in Troubleshooting
    S
    Sebi76
    Dec 23, 2018, 1:36 AM
  • RE: MMM-GoogleShoppingList

    I become this Error…

    [GSL] Trying to login
    (node:17281) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): Error: Evaluation failed:
    TypeError: Cannot read property ‘click’ of null
    at puppeteer_evaluation_script:2:44
    (node:17281) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated.
    In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

    posted in Utilities
    S
    Sebi76
    Dec 22, 2018, 10:13 PM
  • RE: MMM-Snow Activation at Month

    Lost my settings. Now I’m faced with the problem again. It doesn’t work. Is it correct that d.getmonth returns the value 11 for December?

    posted in Development
    S
    Sebi76
    Dec 22, 2018, 8:23 PM
  • RE: MMM-Facial-Recognition-OCV3 cant run toold.capture.py

    I found the issue.

    Change in capture.py

    from config import ToolsConfig -> from .config import ToolsConfig

    posted in Troubleshooting
    S
    Sebi76
    Dec 22, 2018, 1:06 PM
  • RE: MMM-Facial-Recognition-OCV3 cant run toold.capture.py

    Hello ,

    i had the same Problem. Clean Install from here…
    " https://github.com/normyx/MMM-Facial-Recognition-OCV3 "

    pi@raspberrypi:~/MagicMirror/modules/MMM-Facial-Recognition-OCV3 $ sudo python3 tools.capture.py
    Traceback (most recent call last):
    File “tools.capture.py”, line 9, in
    from lib.tools.capture import ToolsCapture
    File “/home/pi/MagicMirror/modules/MMM-Facial-Recognition-OCV3/lib/tools/capture.py”, line 19, in
    from config import ToolsConfig
    ImportError: cannot import name ‘ToolsConfig’

    posted in Troubleshooting
    S
    Sebi76
    Dec 22, 2018, 12:29 PM
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