MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. mrfloppy88
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    M
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 4
    • Groups 0

    mrfloppy88

    @mrfloppy88

    1
    Reputation
    301
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    mrfloppy88 Unfollow Follow

    Best posts made by mrfloppy88

    • RE: Help with config and adding modules

      thanks, yes i backup after every successfull edit ^^

      posted in Troubleshooting
      M
      mrfloppy88

    Latest posts made by mrfloppy88

    • RE: Help with config and adding modules

      damn, after that edit it just shows black

      i tried the jshint, but i dont understand why it would be expecting some characters

      are you familliar with the face recognition module?

      https://pastebin.com/640sLwqB

      posted in Troubleshooting
      M
      mrfloppy88
    • RE: Help with config and adding modules

      thanks, yes i backup after every successfull edit ^^

      posted in Troubleshooting
      M
      mrfloppy88
    • RE: Help with config and adding modules

      im sorry… but that did not help

      could you show me the the lines as they should be?

      https://pastebin.com/b6hpEDzc this might be easier to read

      posted in Troubleshooting
      M
      mrfloppy88
    • Help with config and adding modules

      after trying to add a face recognition my config is broken

      can someone help me out?

      p.s. i had to use the sample file, as i broke the original config before
      i copied it to overwrite config.js and reapplied my edits

      /* Magic Mirror Config Sample
      *

      • By Michael Teeuw http://michaelteeuw.nl
      • MIT Licensed.
        */

      var config = {
      port: 8080,

      ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses.
      
      language: "nl",
      timeFormat: 24,
      units: "metric",
      
      modules: [
      	{
      		module: 'MMM-Facial-Recognition',
      		config: {
      			// 1=LBPH | 2=Fisher | 3=Eigen
      			recognitionAlgorithm: 1,
      			// Threshold for the confidence of a recognized face before it's considered a
      			// positive match.  Confidence values below this threshold will be considered
      			// a positive match because the lower the confidence value, or distance, the
      			// more confident the algorithm is that the face was correctly detected.
      			lbphThreshold: 50,
      			fisherThreshold: 250,
      			eigenThreshold: 3000,
      			// force the use of a usb webcam on raspberry pi (on other platforms this is always true automatically)
      			useUSBCam: false,
      			// Path to your training xml
      			trainingFile: 'modules/MMM-Facial-Recognition/training.xml',
      			// recognition intervall in seconds (smaller number = faster but CPU intens!)
      			interval: 2,
      			// Logout delay after last recognition so that a user does not get instantly logged out if he turns away from the mirror for a few seconds
      			logoutDelay: 15,
      			// Array with usernames (copy and paste from training script)
      			users: [],
      			//Module set used for strangers and if no user is detected
      			defaultClass: "default",
      			//Set of modules which should be shown for every user
      			everyoneClass: "everyone",
      			// Boolean to toggle welcomeMessage
      			welcomeMessage: true
      		}
      	}
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_left"
      	},
      	{
      		module: "calendar",
      		header: "Feestdagen",
      		position: "top_left",
      		config: {
      			calendars: [
      				{
      					symbol: "calendar-check-o ",
      					url: "webcal://ical.mac.com/ical/Dutch32Holidays.ics"
      				}
      			]
      		}
      	},
      	{
      		module: "compliments",
      		position: "lower_third"
      	},
      	{
      		module: "currentweather",
      		position: "top_right",
      		config: {
      			location: "Best",
      			locationID: "2759040",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "XXX"
      		}
      	},
      	{
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "Best",
      			locationID: "2759040",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "XXX"
      		}
      	},
      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
      				{
      					title: "Eindhovens Dagblad",
      					url: "http://www.ed.nl/best-e-o/rss.xml"
      				}
      			],
      			showSourceTitle: true,
      			showPublishDate: true
      		}
      	},
      ]
      

      };

      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== “undefined”) {module.exports = config;}

      posted in Troubleshooting
      M
      mrfloppy88