Read the statement by Michael Teeuw here.
Almost done need to active my mirror by Phrase
-
@sdetweil said in Almost done need to active my mirror by Phrase:
@otto I think MMM-Hotword has enough capability to wake up from sleeping hotword detection
The question is how… I have found one that are using Alexa, but not google.
And to be honest I don’t rely know where to start. -
@otto MMM-Hotword listens for the starter word (alexa, mirror, smart-mirrot…) and then signals assistant started, so the assistant can take over. MMM-AssistantMk2 is for google assistant…
but the latest hotword can do wakeup i think… @Sean has done a good job…
i use this combo on one of my mirror setups… (mostly to tell it to go to sleep!, vs wait til the no motion timeout)…
but i can ask anything i can ask GA. my home automation goes thru insteon smarthome devices which I have connected thru Alexa. i haven’t tried GA for that
-
@sdetweil i have been doing som googleing… and found some intresseting post in the forum:
https://forum.magicmirror.builders/topic/5003/mmm-glance-glance-focus-specific-module-s
https://forum.magicmirror.builders/topic/8444/wake-mirror-with-voice/14?
page=2https://forum.magicmirror.builders/topic/653/voice-controlled-wake-sleep-function
-
i think i will needing this:
MMM-Glance will be use as hiding the modules
MMM-Hotword for for the comand mirror mirror on the wall to active it
MMM-NotificationTrigger that will do the hard work and start/stop it allif i can combien them some way it can work, dont know if there is a more faster way
and not sure how -
@otto hotword hears the phrase, and sends the notification you configure.
Some other module listens for that notification and does what you configure. No reason to send ANOTHER notification (notification trigger)… send what glance needs -
@sdetweil okej so u think i just need hotword and glance?
i did install MMM-glance i have no ide what i am doing right now. SO i guess this is as wrong at it can be:/
{ module: 'MMM-Glance', config: { defaultGlancingTime: 10000, alias: { "news" : "newsfeed", module: "alert", "MMM-NowPlayingOnSpotify", "updatenotification", "calendar","compliments","currentweather","weatherforecast","newsfeed","MMM-Hotword","MMM-AssistantMk2", "party mode" : ["clock", "helloworld", "MMM-Something"], ... } } }````
-
hotword config doc
https://github.com/eouia/MMM-Hotword/blob/master/documents/usage.md
glance only displays the info for some period of time… (default 10 seconds)… how long do you want the info to stay on screen?
the README.md file for each module tells how to use it
-
@sdetweil said in Almost done need to active my mirror by Phrase:
hotword config doc
https://github.com/eouia/MMM-Hotword/blob/master/documents/usage.md
glance only displays the info for some period of time… (default 10 seconds)… how long do you want the info to stay on screen?
the README.md file for each module tells how to use it
thanks for link i have been redning and reding it a coupel of time, and i notis the "This is a real example of recipe file"
is what i am looking for, that is a code for show all/hide all, the “only” thing i need figuer out, is how to get it to work, i need to record some new audio files, and change the “show all” to my phrase that i whant.
and creat trainer for it:Dlooks like i maybe can solve this.
The qustine is if i need to anything more?
will that code hide all of my modules?
or do i need to typ all the namn of them,dont rely know how to explain, i hoop u understand, if not let me know
var recipe = { models: [ { hotwords : "hideall", file : "hideall.pmdl", sensitivity : "0.5", }, { hotwords : "showall", file : "showall.pmdl", sensitivity : "0.5", }, ], commands: { "hideall": { moduleExec: { module: [], exec: (module) => { module.hide()} } }, "showall": { moduleExec: { module: [], exec: (module) => { module.show()} } }, }, } exports.recipe = recipe // Don't remove this line.````
-
@otto I think your code is enough.(at least logically). evenif there be a problem, it would not be serious to solve.
-
@Sean thanks for reply
commands: { "hideall": { moduleExec: { **module: [],** exec: (module) => { module.hide()}```` Do i need write all of the module namn? or is that module [], inculude all of my module? if so i "just need to" 1. record audio file using tranier 2 add the file to models directory 2. add the recipe file to recipes directory 3. add config js : recipes: ["hide_show_all"] any it that right?