Dear @Sean
Clap one, it detects 1 but the icon disappears after that
Wait some seconds, clap again and it show the error in log
Can you help me to fix that
Tks!
Read the statement by Michael Teeuw here.
Latest posts made by smarthome
-
RE: MMM-Clap
-
RE: MMM-AssistantMk2
@Sean
After your answer, I’m looking for google cloud amd find out the way to make it support, hi
Not only Vietnamese language, a wide range of local language, like assistant language
That’ now MMM Google TTS work ok with vietnamese language
Tks! -
RE: MMM-AssistantMk2
@Sean
I’ also active billing account to enable Google Cloud text to Speech API to use your MMM Google-TTS Module
But, this can not speak my local language (Vietnamese) like ASSISTANT_SAY can
How to do that? -
RE: MMM-AssistantMk2
@Sean
How can I remove “Repeat after me” whenever ask ASSISTANT _SAY to speech text? -
RE: MMM-Hotword (v2) - whole-new-built
@Sean
I created some hotwords by myself on https://snowboy.kitt.ai/ under .pmdl extension, then save to model folder in MMM Hotword
After configure MMM-Hotword in MMM config file to use these hotwords, MMM-Hotword auto detect hotwords and do the action, why no input voice signal to mic, only noise…
I tried to incrase hotword from 1 word to 2 words, one to multiple syllables, but cant not stop this issuse
I’ve check the configuration, everthing is normal.
What’s happen? How to fix that?Tks!
-
RE: MMM-Hotword (v2) - whole-new-built
@Sean
Finally, it worked, many thank for your help! -
RE: MMM-Hotword (v2) - whole-new-built
@Sean
Your notification code didn’t work. Nothing happen :(
Could you check it again, plspayload: (payload) => { //OPTIONAL. transform received payload to what your target module wants.
You mean that: MMM Notification transform only, can not modify the payload then transform?
-
RE: MMM-Hotword (v2) - whole-new-built
@Sean
1/Could you give me the code in MMM Notification Trigger2/Your code with ModuleExec didn’t work
3/I’m considering to use MMM TTS/Google TTS, but woud like to l try the simple solution first
-
RE: MMM-Hotword (v2) - whole-new-built
@Sean
Can I send double notificationExec to 2 Module with ony 1 hotword
1st to MMM Page-Selector
2nd to Assistant MK2 speaks about this action"open_news": { notificationExec: { notification: "PAGE_SELECT", payload:1 notification: "ASSISTANT_SAY", payload:"Open News page" restart:true, },
Also combine
"open_news": { notificationExec: { notification: {"PAGE_SELECT","ASSISTANT_SAY"} payload:(1,"Open News page"} }, restart:true, },
But in real test, only ASSISTANT_SAY can be executed
How can I do that for both?
Tks!
-
RE: MMM-AI
@bibi
This is my code, it workes welltriggers: [ { trigger: "ASSISTANT_RESPONSE_END", fires: [ { fire: "standby_Image", payload: payload => { var img = document.getElementById("MY_ANIMATION"); img.src = "modules/MMM-AI/jarvis-standby2.gif"; return payload; } } ] }, { trigger: "ASSISTANT_UNDERSTOOD", fires: [ { fire: "talk Image", payload: payload => { var img = document.getElementById("MY_ANIMATION"); img.src = "modules/MMM-AI/jarvis-talk2.gif"; return payload; } } ] } ]