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?
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?
thanks, yes i backup after every successfull edit ^^
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
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
*
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;}