@sdetweil what would the code for the reco notification look like? Sorry I’m new.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Face-Reco-DNN Alerts
-
MMM-Face-Reco-DNN Alerts
Would it be at all possible to use the alerts module to say like “Hello Sue” or something of the sort when a face is recognized and the profile is switched? If so how would one go about that?
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil Oh yeah of course for each module I have a space like “sam bob sue fred”
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil you mean like the name of the class is not right next to the colon?
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil Okay haha thank you so much for your time
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil I did look through that page and all the case names are the same (lowercase) from my dataset folders for each person to the class names for each module and it still doesn’t switch modules in the mirror. Do I have to classify the each class first in the .js in the facereco module first?
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil I do have classes set in each module but it doesn’t switch the profiles when a face is recognized. In the terminal, it says that the right user is recognized and is logged in but the layout doesn’t change.
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil So I can’t have specific classes or layouts for each person?
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil Yeah I set all the classes for each module in the config.js but for so that it knows the allowed users is that in the MMM-Face-Reco-DNN.js? Like the first declaration of the classname.
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil I have all the modules selected with the class name I want for them do I set the class name in the config.js or MMM-Face-Reco-DNN.js?
-
RE: MMM-Face-Reco-DNN + ProfileSwitcher
@sdetweil Sorry I’m new where in the Face-Reco can you set profiles instead of using MMM-ProfileSwitcher? Can you have different layouts for different people using just the MMM-Face-Reco-DNN module?
-
MMM-Face-Reco-DNN + ProfileSwitcher
Has anyone had any luck trying to use the two modules together? I have tried editing the .js in the Face-Reco module to fit with the other one like said in the documentation of the ProfileSwitcher module but since it is a different module not all things line up.
-
RE: MMM-TomTomTraffic blank circle
@sdetweil I removed the quotes and it still shows the same black circle. I tried using nothing surrounding the numbers and with colons and it still doesn’t seem to show.
-
MMM-TomTomTraffic blank circle
Hello I’ve been having some issues with the MMM-TomTomTraffic module, I’ve tried both MMM-TomTomTrafficIncidents as well as this one and both do not work. With the config below, the only thing I get is a blank black circle with no streets or traffic or anything inside of it, all my other modules work except for this one. Has anyone else had this same issue?
{ module: "MMM-TomTomTraffic", position: "top_right", classes: "1", config: { location: [-88.158592, 42.966492], size: "350", zoomLevel: "5", tomtom: { apiToken: "uFqZBswnFWpg7WRHEkRFwcmMur5nvmt7", thickness: "4", }, mapbox: { apiToken: "pk.eyJ1Ijoic3RhcmR5emUiLCJhIjoiY2txbWIxYW04MGVubjJubm4wcmg4aXlieSJ9.ArytlzgM4WMc5tfGszkvIA", } } }, -
RE: Weather Module LocationID Error
@sdetweil Okay that did fix that, now it’s telling me there’s an unexpected token “modules” (The one close to the top of the config file)
-
Weather Module LocationID Error
Hello I am fairly new to the community so please bare with me haha
I’m currently setting up my Magic Mirror to show the default weather module for now, I received a LocationID and API key from openweather.com and when I run config:check it says that it doesn’t recognize the token “LocationID”
Here is my current config of it
{
module: “weather”,
position: “top_right”,
config: {
weatherProvider: “openweathermap”,
type: “current”,
location: “New Berlin”
locationID: “5264381”, //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
apiKey: “8c4d8ab59d1b3f0277d2aed5a9561da5”
}
},Thank you!