Read the statement by Michael Teeuw here.
show jsontable by user using Face Reco DNN
-
Hello all
I am beginner in magic mirror i want show information of each user by their face, for example each employee can see his information using his face.
-
@jubair you will have to use the MMM-FaceReco-DNN module to enable displaying unique module combos by person
-
@sdetweil i already add it and used jsontable to store the information of the employees but now i want to show each employee his information by their face
-
@sdetweil MagicMirror can only show or hide modules
FaceReco uses the module config ‘classes’ to group modules by ‘person’…
if u want different content by user you have to install an instance of jsontable for each user all at once… MM only loads modules at startup. then use the classes: parm to connect each to the appropriate ‘user’
-
@jubair thank you sdetweil for your idea.
do i need to duplicate jsontable config in config.js?? or there is another way to do it?? -
@jubair yes, u have to duplicate… no other way (hopefully the module supports multiple instances, yes as long as the urls are unique)
all instances are loaded all the time at startup… and may refresh in the background, depending on how smart the module is
{ module:"MMM-JsonTable" position: ....., classes:"fred" config:{ ..... } }, { module:"MMM-JsonTable" position: ....., classes:"sue" config:{ ..... } }, { module:"MMM-JsonTable" position: ....., classes:"fred" config:{ ..... } }, { module:"MMM-JsonTable" position: ....., classes:"bob" config:{ ..... } }
-
@sdetweil I am thankful, i will try it