Read the statement by Michael Teeuw here.
MMM-Clap
-
@Cr4z33
You are using MMM-Clap & MMM-Hotword at a same time. Have you 2 mics?
Or you should control taking & releasing the mic between modules. I don’t recommend. -
@Sean I’ve got one USB mic.
Sorry I am not sure you gave me the solution. :smiling_face_with_open_mouth_cold_sweat:
Say again? -
@Cr4z33
MMM-Clap and MMM-Hotword will compete each other to take one mic. I think you’d better to use just one module. At least one module at a time. You can make juggling withCLAP_RESUME
,CLAP_PAUSE
,HOTWORD_RESUME
,HOTWORD_PAUSE
to confirm only one module uses a mic at a time. But too complex. not recommended. -
@Sean
The scenario is:
Step 1: Clap action
Step 2: Clap sound detected, MMM Clap send output notification to MMM Page Selector while Mic still not released yet
Step 3: MMM Page Selector receive input notification then change page
Step 4: MMM Page Selector sends output notification CLAP_PAUSE to MMM Page Selector to release the MIC and waitting for next clap sound -
@smarthome said in MMM-Clap:
Step 1: Clap action
Step 2: Clap sound detected, MMM Clap send output notification to MMM Page Selector while Mic still not released yet
Step 3: MMM Page Selector receive input notification then change page
Step 4: MMM Page Selector sends output notification CLAP_PAUSE to MMM Page Selector to release the MIC and waitting for next clap soundIn this real usage, You don’t need to release mic at all. MMM-Page-Selector doesn’t use any mic. So why do you need to release mic for changing pages? Mic Releasing is needed only when your other module wants to use the same Mic (like MMM-AssistantMk2). Unless you set
restart:false
, MMM-Clap will be restarted automatically after detection regardless other module’s job.And If you REALLY want to have a feature - sending some specific notification from specific module -, request module creator to do so. But with this case, I don’t think it needs.
-
@Sean said in MMM-Clap:
And If you REALLY want to have a feature - sending some specific notification from specific module -,
Fortunately(???) There is already a solution about this;
As far as I knowMMM-Page-Selector
could emitPAGE_CHANGED
notification.
All you need is to translate that notification to what you need. AndMMM-NotificationTrigger
module could do that job. -
@Sean said in MMM-Clap:
@Cr4z33
MMM-Clap and MMM-Hotword will compete each other to take one mic. I think you’d better to use just one module. At least one module at a time. You can make juggling withCLAP_RESUME
,CLAP_PAUSE
,HOTWORD_RESUME
,HOTWORD_PAUSE
to confirm only one module uses a mic at a time. But too complex. not recommended.Oh now I got it.
Thanks however I will then keep using MMM-Hotwords.
Too precious for my voice command needs hehe. 😁
-
@Sean
I’d already, but didn’t work{ module: "MMM-NotificationTrigger", //This module works in Background, so you don't need to describe `position`. config: { useWebhook: false, // If you want to activate webhook as Notification emitter, set true. (eg. IFTTT) triggers:[ // Array of triggers. { trigger: "PAGE_CHANGED", //REQUIRED triggerSenderFilter: (sender) => { //OPTIONAL should return true or false if (sender == "MMM-Page-Selector") { return true } return false }, triggerPayloadFilter: (payload) => { //OPTIONAL should return true or false if (typeof payload.value !== 'undefined' && payload.value > 0) { return true } return false }, fires: [ // Array of fires. You can enable multi-firing with one trigger. { fire:"CLAP_RESUME", //REQUIRED payload: (payload) => { //OPTIONAL. transform received payload to what your target module wants. return payload }, // delay: 1000, //OPTIONAL, if this is set, your outgoing notification will be fired after delay. // exec: "ls -l" //OPTIONAL, if exists, this script will be executed, and the result will be returned with "OUTGOING_NOTIFICATION_RESULT" and payload. Can also be specified as a function which accepts the payload as an argument and returns the command to execute. }, ], }, ] } },
-
@smarthome
Repeating again; Why do you need CLAP_RESUME/CLAP_PAUSE on page changing? Without them the module will work. I’m a little embarrassed to understand why you need it. -
@Sean
With MMM Page selector, If I not turn page, i must wait for changing by itself
That’s why I use CLAP to turn page quickly
With MMM Asisstant MK2, I need use MMM Hotword to see my request, if I use another module to trigger, I can’t see itfinally, CLAP and Hotword use at the same time…