<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-Hotword won't recognize the hotword]]></title><description><![CDATA[<p dir="auto">I guess I successfully install mmm-assistantmk2 along with mmm-hotword. I followed <a href="https://forum.magicmirror.builders/topic/9356/the-latest-install-guide-mm-w-google-assistant">this method</a> for installation.</p>
<p dir="auto">I configured my config file and I can see Google logo on my MM screen as well, however no matter how much I shout “Computer” or “Smart Mirror” there is no detection.</p>
<p dir="auto">Is there any way I can debug and see what’s going on? Or what did I misconfigure?</p>
<p dir="auto">Config.js</p>
<pre><code>{
	module: "MMM-Hotword",
	config: {
		record: {
			recordProgram : "arecord",  
			device        : "plughw:1"
				},
			autostart:true,
			onDetected: {
				notification: (payload) =&gt; {
					return "ASSISTANT_ACTIVATE"
					},
				payload: (payload) =&gt; {
						return {
						  profile: payload.hotword
						}
					}
				},
		},
},
{
	module: "MMM-AssistantMk2",
	position: "bottom_left",
	config: {
		deviceLocation: {
			coordinates: { // set the latitude and longitude of the device to get localized information like weather or time. (ref. mygeoposition.com)
			latitude: , // -90.0 - +90.0
			longitude: 	, // -180.0 - +180.0
				},
				},
				record: {
					recordProgram : "arecord",  
					device        : "plughw:1",
				},
				notifications: {
					ASSISTANT_ACTIVATED: "HOTWORD_PAUSE",
					ASSISTANT_DEACTIVATED: "HOTWORD_RESUME",
				},
				useWelcomeMessage: "brief today",
				profiles: {
					"default" : {
						lang: "en-IN"
					}
				},
		}
},
</code></pre>
<p dir="auto">Edit 1 : I ran using npm start dev and I got this error <strong>[HOTWORD] No model to load</strong></p>
<p dir="auto">Edit 2 : I added cuple of models in config file, running npm start says it detected hotword but received no response.</p>
<pre><code>[HOTWORD] Detected: computer
[HOTWORD] stops.
[HOTWORD] Final Result: { detected: true, hotword: 'computer', file: null }
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/11601/mmm-hotword-won-t-recognize-the-hotword</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Jul 2026 17:08:19 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11601.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 15 Nov 2019 11:34:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-Hotword won't recognize the hotword on Thu, 02 Jan 2020 10:33:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chassain-0" aria-label="Profile: chassain-0">@<bdi>chassain-0</bdi></a><br />
Some of the voice models of snowboy sometimes looks weird. <code>Jarvis</code> is one example.<br />
They put the 2 voice patterns in one model(“jarvis.umdl”), so you should use like this;<br />
<a href="https://github.com/eouia/MMM-Hotword/blob/master/documents/models.md" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/eouia/MMM-Hotword/blob/master/documents/models.md</a><br />
<img src="/assets/uploads/files/1577961062738-3e29c14b-02d1-4249-a926-b741b5832f4a-image.png" alt="0_1577961062991_3e29c14b-02d1-4249-a926-b741b5832f4a-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Or you can assign a different identifier to each pattern like this;</p>
<pre><code class="language-js">{
  hotwords: ["jarvis_1", "jarvis_2"],
  file: "jarvis.umdl",
  sensitivity: "0.8,0.8",
},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/66967</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66967</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Thu, 02 Jan 2020 10:33:44 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Hotword won't recognize the hotword on Mon, 30 Dec 2019 16:35:47 GMT]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">after some difficults this module works…but i can’t use hotword jarvis as model (snowboy and computer are ok)…what 's the difference ?<br />
Thanks</p>
]]></description><link>https://forum.magicmirror.builders/post/66819</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66819</guid><dc:creator><![CDATA[chassain 0]]></dc:creator><pubDate>Mon, 30 Dec 2019 16:35:47 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Hotword won't recognize the hotword on Fri, 15 Nov 2019 18:55:53 GMT]]></title><description><![CDATA[<p dir="auto">@Sean yes this worked thanks!</p>
<p dir="auto">I didn’t even realise the first config was for v1</p>
]]></description><link>https://forum.magicmirror.builders/post/64510</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64510</guid><dc:creator><![CDATA[Newbie007]]></dc:creator><pubDate>Fri, 15 Nov 2019 18:55:53 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Hotword won't recognize the hotword on Fri, 15 Nov 2019 13:47:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/newbie007" aria-label="Profile: Newbie007">@<bdi>Newbie007</bdi></a><br />
First, what was wrong was that you are using the configuration for MMM-Hotword 1.X. It is updated to 2.X, so you should use <a href="https://github.com/eouia/MMM-AssistantMk2/wiki/Configuration#with-mmm-hotwordv2" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/eouia/MMM-AssistantMk2/wiki/Configuration#with-mmm-hotwordv2</a></p>
]]></description><link>https://forum.magicmirror.builders/post/64492</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64492</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Fri, 15 Nov 2019 13:47:22 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Hotword won't recognize the hotword on Fri, 15 Nov 2019 13:44:35 GMT]]></title><description><![CDATA[<p dir="auto">Do you mean I should change like this in config.js file?</p>
<pre><code>//useWelcomeMessage: "brief today",
				profiles: {
					"computer" : {
						lang: "en-IN"
					}
                               profiles: {
					"smart_mirror" : {
						lang: "en-IN"
					}
				},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/64491</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64491</guid><dc:creator><![CDATA[Newbie007]]></dc:creator><pubDate>Fri, 15 Nov 2019 13:44:35 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Hotword won't recognize the hotword on Fri, 15 Nov 2019 13:42:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/newbie007" aria-label="Profile: Newbie007">@<bdi>Newbie007</bdi></a><br />
Your profile of AssistantMk2 is “computer”? You are calling “computer” as a profile, but you have defined only “default” profile.<br />
And remove <code>useWelcomeMessage</code> unless you control start modules manually.</p>
]]></description><link>https://forum.magicmirror.builders/post/64490</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64490</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Fri, 15 Nov 2019 13:42:13 GMT</pubDate></item></channel></rss>