• 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. beck0r
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
B
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 4
  • Posts 29
  • Groups 0

beck0r

@beck0r

2
Reputation
1.2k
Profile views
29
Posts
0
Followers
0
Following
Joined May 26, 2017, 5:17 AM
Last Online Oct 23, 2021, 10:45 AM
Location Germany

beck0r Unfollow Follow

Best posts made by beck0r

  • RE: CSS basics

    Have you tried to use an external Browser e.g. from your Laptop to Open your Magic Mirror Homepage ? (192.168.178.20:8080 for example) there you could use F12(developer Mode) to find out the css class names you Need

    posted in Development
    B
    beck0r
    May 29, 2017, 6:06 AM

Latest posts made by beck0r

  • RE: MMM-Traffic 2.0

    @beck0r All good,

    I’ve missed that line :-)

    Note: Google maps coordinates are latitude,longitude, but Mapbox uses longitude,latitude so be sure to reverse what you copy from Google.

    posted in Transport
    B
    beck0r
    Oct 23, 2021, 10:45 AM
  • RE: MMM-Traffic 2.0

    Hello there,

    i’ve entered my coordinates but somehow the calculated time is 15 mins less to Google Maps. Can you say why there is such an inaccuracy compared to Google Maps? I’m very sure that I’ve used the correct coordinates. Also tested it with other coordinates.

    Thank you very much
    Kind Regards

    posted in Transport
    B
    beck0r
    Oct 23, 2021, 10:41 AM
  • RE: MagicMirror OS How to restart MagicMirror?

    Thank you very much!

    posted in Troubleshooting
    B
    beck0r
    Oct 23, 2021, 8:26 AM
  • MagicMirror OS How to restart MagicMirror?

    Hello there,

    I’m using MagicMirror OS and was asking myself how to restart the MagicMirror service without restarting the whole PI.

    “pm2 restart mm” is not working

    Thanks in advance

    Kind Regards

    posted in Troubleshooting
    B
    beck0r
    Oct 23, 2021, 7:51 AM
  • RE: Need help with config syntax error

    Yes… I am trying to uncomment the MMM-History area. With that area not included MM starts (still throwing errors messages but it works). Akismet won’t let me change my post :)

    posted in Troubleshooting
    B
    beck0r
    Jan 4, 2018, 2:37 PM
  • RE: Need help with config syntax error

    Hey,

    thank you for your answer. About the additional comma. This happened when I replaced my personal information with ###. I have now removed the api keys. Thanks for taking care!

    /* Magic Mirror Config Sample
     *
     * By Michael Teeuw http://michaelteeuw.nl
     * MIT Licensed.
     */
    
    var config = {
    	port: 8080,
    	ipWhitelist: ["###"], // Set [] to allow all IP addresses.
    	language: "de",
    	timeFormat: 24,
    	units: "metric",
    
    	modules: [
    		//{
    			//module: "alert"
    		//},
    		/*{
    			module: "updatenotification",
    			position: "top_bar"
    		},*/
    		{
        			module: "MMM-Admin-Interface"
        		},
    		{
       			module: 'MMM-voice',
        			position: 'top_left',
        			config: {
           				 microphone: 1,
           				 keyword: 'MAGIC',
    				 timeout: 15
    				}
    		},	
    		{
    			module: "clock",
    			position: "top_left",
    			config: {
    				showWeek: true
    				}
    		},
    		{
    			module: "calendar",
    			header: "Deine Termine",
    			position: "top_left",
    			config: {
    				calendars: [
    					{
    						symbol: "calendar-check-o ",
    						url: "###"
    					},
    				]
    			}
    		},
    		{
    			module: "compliments",
    			position: "lower_third",
    			updateInterval: 20000,
    			config: {
    				remoteFile: "custom_complis.json"
    				}
    		},
    		{
    			module: "currentweather",
    			header: "Aktuelles Wetter",
    			position: "top_right",
    			config: {
    				location: "###",
    				locationID: "2937591",  //ID from http://www.openweathermap.org/help/city_list.txt
    				appid: "###",
    				appendLocationNameToHeader: true,
    				degreeLabel: true,
    				showHumidity: true		
    				}
    		},
    		{
    			module: "weatherforecast",
    			position: "top_right",
    			header: "Wettervorhersage",
    			config: {
    				location: "###",
    				locationID: "2937591",  //ID from http://www.openweathermap.org/help/city_list.txt
    				appid: "###",
    				appendLocationNameToHeader: true,
    				colored: true,
    				showRainAmount: true
    			}
    		},
    		{
       			module: "MMM-DHT22",
    			header: "Raumtemperatur",
       			position: "top_right",
        			config: {
            			sensorPIN: 3,
            			updateInterval: 1 // Minutes    
        				}
      		},
    		{
    			module: "newsfeed",
    			position: "bottom_bar",
    			config: {
    				feeds: [
    					{
    						title: "kicker.de",
    						url: "http://rss.kicker.de/news/fussball"
    					},
    					{
    						title: "spiegel.de",
    						url: "http://www.spiegel.de/schlagzeilen/tops/index.rss"
    					},
    				],
    				showSourceTitle: true,
    				showPublishDate: true,
    				showDescription: true,
    				wrapDescription: false
    			}
    		},
    		//{
    				//module: 'MMM-History',
    				//position: 'top_right',
              		//config: {
    					//maxWidth: "300px"  // Increase to maximum px or 100% to stretch across mirror. See Examples above.
             	 		//},
        		//},
    		{
    			module: "MMM-SystemStats",
    			position: "top_right", // This can be any of the regions.
    			header: "System Stats", // This is optional
    			classes: "small dimmed", // Add your own styling. Optional.
    			config: {
    				updateInterval: 10000,
    				animationSpeed: 0,
    				align: 'right' // align labels
    				},
    		},
    		{
        			module: 'MMM-ip',
        			position: 'top_right',
    			config:  {
    				 fontSize: 16,
    				 showFamily: "IPv4",
    				 voice: false
    				}
        		},
    		{
      				module: 'MMM-MyCommute',
      				position: 'top_left',
      				config: {
        					showHeader: true,
        					headerText: 'Verkehr',
       					apikey: '###',
        					origin: '###',
        					startTime: '05:00',
        					endTime: '20:00',
        					destinations: [
          							{
            						destination: '###',
           	 						label: 'Auto zur Arbeit',
            						mode: 'driving',
            						color: '#7D26CD'
          							},      						
          							{
            						destination: '###',
            						label: 'Fahrrad zur Arbeit',
            						mode: 'bicycling',
    							color: '#FFB444'
          							},
    							{
            						destination: '###',
            						label: 'RMV zur Arbeit',
            						mode: 'transit',
    							color: '#FF73D5'
          							}
        							]
      					}
    		},
    		/*{
    			module: 'MMM-Globe',
    			position: 'top_center',
    			config: {
    				style: 'europeDiscNat',
    				imageSize: 300,
    				updateInterval: 10*60*1000
    				}
    		},*/
    		{
    			module: 'MMM-SoccerLiveScore',
    			position: 'top_left',
    			header: 'Live-Scores',
    			config: {
    				leagues: [35, 1, 9],
            			showNames: true,
            			showLogos: true,
            			displayTime: 60 * 1000,
            			showTables: true
    				}
    		},
    		/*{
    			module: 'MMM-Podcast',
    			config: {
    				feedUrl: 'http://www.tagesschau.de/export/video-podcast/webxl/tagesschau-in-100-sekunden/'
    				}
    		},*/
    		/*{
    		module : 'MMM-RandomBackground',
    		position : 'fullscreen_below', // Any region but this one makes the most sense
    		config : {
    			animationSpeed : 4000,
    			updateInterval : 9000
    			}
    		},*/
    
    		{
               	 	module: 'MMM-Carousel',
                		config: {
                    		transitionInterval: 10000,
                    		ignoreModules: ['MMM-DHT22'],
                    		mode: 'positional',
                    		bottom_right: {enabled: true, ignoreModules: [], overrideTransitionInterval: 10000},
                    		}			
               	}
    	        					
    ]
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== "undefined") {module.exports = config;}
    
    
    posted in Troubleshooting
    B
    beck0r
    Jan 4, 2018, 2:32 PM
  • Need help with config syntax error

    Hey there,

    i had to turn off my pi for a while since I’ve moved to a new location. During the starting sequence of MM it tells me I have syntax errors in my config. I can’t really imagine since I haven’t touched the config at all. JS syntax checkers keep telling me that the config is correct but my screen stays black.

    Can somebody help me? It’s been a while since I have faced the syntax of the config file so I’m not familiar with it any longer.

    Thank you very much

    Starting MagicMirror: v2.1.1
    Loading config ...
    Loading module helpers ...
    Initializing new module helper ...
    Module helper loaded: MMM-Admin-Interface
    Initializing new module helper ...
    Module helper loaded: MMM-voice
    No helper found for module: clock.
    Initializing new module helper ...
    Module helper loaded: calendar
    No helper found for module: compliments.
    No helper found for module: currentweather.
    No helper found for module: weatherforecast.
    Initializing new module helper ...
    Module helper loaded: MMM-DHT22
    Initializing new module helper ...
    Module helper loaded: newsfeed
    WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration.
    Loading module helpers ...
    Initializing new module helper ...
    Module helper loaded: MMM-Admin-Interface
    Initializing new module helper ...
    Module helper loaded: MMM-voice
    No helper found for module: clock.
    Initializing new module helper ...
    Module helper loaded: calendar
    No helper found for module: compliments.
    No helper found for module: currentweather.
    No helper found for module: weatherforecast.
    Initializing new module helper ...
    Module helper loaded: MMM-DHT22
    Initializing new module helper ...
    Module helper loaded: newsfeed
    App threw an error during load
    SyntaxError: Error parsing /home/pi/MagicMirror/modules/MMM-History/node_modules/request/package.json: Unexpected token  in JSON at position 4111
        at JSON.parse ()
        at readPackage (module.js:92:52)
        at tryPackage (module.js:102:13)
        at Function.Module._findPath (module.js:183:20)
        at Module._resolveFilename (module.js:468:25)
        at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/electron/dist/resources/electron.asar/common/reset-search-paths.js:35:12)
        at Function.Module._load (module.js:418:25)
        at Module.require (module.js:498:17)
        at require (internal/module.js:20:19)
        at Object. (/home/pi/MagicMirror/modules/MMM-History/node_helper.js:8:17)
    Whoops! There was an uncaught exception...
    { SyntaxError: Error parsing /home/pi/MagicMirror/modules/MMM-History/node_modules/request/package.json: Unexpected token  in JSON at position 4111
        at JSON.parse ()
        at readPackage (module.js:92:52)
        at tryPackage (module.js:102:13)
        at Function.Module._findPath (module.js:183:20)
        at Module._resolveFilename (module.js:468:25)
        at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/electron/dist/resources/electron.asar/common/reset-search-paths.js:35:12)
        at Function.Module._load (module.js:418:25)
        at Module.require (module.js:498:17)
        at require (internal/module.js:20:19)
        at Object. (/home/pi/MagicMirror/modules/MMM-History/node_helper.js:8:17)
      path: '/home/pi/MagicMirror/modules/MMM-History/node_modules/request/package.json' }
    MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
    If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues
    Launching application.
    
    

    Config removed. yawns

    posted in Troubleshooting
    B
    beck0r
    Jan 4, 2018, 1:35 PM
  • RE: MMM-voice

    not for me… still the same error message in debug.log

    pocketsphinx_continuous: error while loading shared libraries: libpocketsphinx.so.3: cannot open shared object file: No such file or directory
    
    
    posted in Utilities
    B
    beck0r
    Jun 21, 2017, 10:45 AM
  • RE: MMM-voice

    still the same ;-(

    posted in Utilities
    B
    beck0r
    Jun 6, 2017, 10:46 AM
  • RE: MMM-DHT22 Humidity and Temperature Module

    same here, shows loading for a very long time and ‘undefined’ afterwards

    the sensor is working, see here:

    0_1496151901454_upload-79b4ac08-535a-4fe6-848e-99f80fe7650d

    any idea?

    posted in Utilities
    B
    beck0r
    May 30, 2017, 1:45 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