<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Custom voice command, which contain 2 or more starters in Home Automation</title>
    <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/690088#M53958</link>
    <description>&lt;P&gt;Patrik2 has put it succinctly.&lt;/P&gt;&lt;P&gt;The routines are all created via the script editor from Google home web. As far as I am aware, these routines can ONLY be household, not personal.&lt;/P&gt;&lt;P&gt;Rest of the questions were already answered in the first post. Reading that would be a first step to resolving the issue.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Mar 2025 00:33:28 GMT</pubDate>
    <dc:creator>OptimumPrime</dc:creator>
    <dc:date>2025-03-12T00:33:28Z</dc:date>
    <item>
      <title>Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684023#M53202</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;From one day to the next, all automations created by my custom voice command, which contain 2 or more starters in one automation, have stopped working correctly.&lt;BR /&gt;Until now, they all worked correctly for a long time.&lt;BR /&gt;I am attaching a simple automation for blinds.&lt;BR /&gt;When I say "Open Tables", the blinds open to 1 percent and everything works correctly.&lt;BR /&gt;However, when I say "Close Tables", the blinds open to 1 percent again, but they should open to 3 percent. This means that the first automation was triggered, not the second one. A few days ago, everything still worked correctly.&lt;BR /&gt;Of course, the solution would be to split the automations into two separate ones, then it works correctly, but that is not a solution because I would have many separate and unclear automations.&lt;BR /&gt;I am using the Nest Mini 2 assistant.&lt;BR /&gt;Is Google Home having any technical problems?&lt;BR /&gt;Will everything start working correctly again soon?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;metadata:&lt;BR /&gt;name: Blinds Open/Close with voice&lt;BR /&gt;description: Open/Close Blinds with voice&lt;BR /&gt;automations:&lt;BR /&gt;- starters:&lt;BR /&gt;- type: assistant.event.OkGoogle&lt;BR /&gt;eventData: query&lt;BR /&gt;is: Open Tables&lt;BR /&gt;actions:&lt;BR /&gt;- type: device.command.OpenClose&lt;BR /&gt;devices:&lt;BR /&gt;- Blind 1 - My Room&lt;BR /&gt;- Blind 2 - My Room&lt;BR /&gt;openPercent: 1.0&lt;/P&gt;&lt;P&gt;- starters:&lt;BR /&gt;- type: assistant.event.OkGoogle&lt;BR /&gt;eventData: query&lt;BR /&gt;is: Close Tables&lt;BR /&gt;actions:&lt;BR /&gt;- type: device.command.OpenClose&lt;BR /&gt;devices:&lt;BR /&gt;- Blind 1 - My Room&lt;BR /&gt;- Blind 2 - My Room&lt;BR /&gt;openPercent: 3.0&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 19:55:02 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684023#M53202</guid>
      <dc:creator>Patrik2</dc:creator>
      <dc:date>2025-03-06T19:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684282#M53221</link>
      <description>&lt;P&gt;I’m experiencing the same issue.&lt;/P&gt;&lt;P&gt;I have multiple automations in a single file, and all of them were working perfectly fine until about 2-3 days ago.&lt;/P&gt;&lt;P&gt;The timed automations are still functioning, but anything involving voice commands is no longer working.&lt;/P&gt;&lt;P&gt;I’ve deleted all existing scripts and created new ones, but the problem persists.&lt;/P&gt;&lt;P&gt;To troubleshoot, I deleted all scripts and created a simple one to turn on a light bulb when I say “Turn on bulb,” and a separate one to turn it off when I say “Turn off bulb.” This setup works fine on its own.&lt;/P&gt;&lt;P&gt;However, when I combine these two scripts/commands into one script (see below), the bulb turns on, but it does not turn off as expected with the respective command.&lt;/P&gt;&lt;P&gt;I swapped the order of the automations, and it turns out that Google only executes the first automation in the script, ignoring all subsequent ones.&lt;/P&gt;&lt;P&gt;This is rather very annoying considering the time and energy spent into creating these automations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;metadata:&lt;BR /&gt;name: Bulb control&lt;BR /&gt;description: Bulb control&lt;/P&gt;&lt;P&gt;automations:&lt;BR /&gt;- starters:&lt;BR /&gt;- type: assistant.event.OkGoogle&lt;BR /&gt;eventData: query&lt;BR /&gt;is: turn on bulb&lt;BR /&gt;actions:&lt;BR /&gt;- type: device.command.OnOff&lt;BR /&gt;devices:&lt;BR /&gt;- Bulb - Kitchen&lt;BR /&gt;on: true&lt;/P&gt;&lt;P&gt;- starters:&lt;BR /&gt;- type: assistant.event.OkGoogle&lt;BR /&gt;eventData: query&lt;BR /&gt;is: turn off bulb&lt;BR /&gt;actions:&lt;BR /&gt;- type: device.command.OnOff&lt;BR /&gt;devices:&lt;BR /&gt;- Bulb - Kitchen&lt;BR /&gt;on: false&lt;/P&gt;</description>
      <pubDate>Sat, 08 Mar 2025 00:26:23 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684282#M53221</guid>
      <dc:creator>OptimumPrime</dc:creator>
      <dc:date>2025-03-08T00:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684338#M53224</link>
      <description>&lt;P&gt;Yes, it's frustrating. I have 15 scripts that I need to convert into 35 separate voice automations. The worst part is that I don't know if I should wait for Google to fix their issues, and how long it will take them.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Mar 2025 08:18:16 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684338#M53224</guid>
      <dc:creator>Patrik2</dc:creator>
      <dc:date>2025-03-08T08:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684445#M53237</link>
      <description>&lt;P&gt;Well, based on the other thread you replied in, it took them about 6+ months to fix the issue in 2023!&lt;/P&gt;&lt;P&gt;At least yours can be split into 35 separate automations, mine is likely around 400.&lt;/P&gt;&lt;P&gt;For me, it might be faster to switch to Alexa than stick with Google home. With AI features built into Alexa now, whisper mode, drop-in feature etc., it seems Alexa gets better over time and Google gets worse.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even the broadcast feature now is a hit and miss - sometimes it'll broadcast my voice, sometimes the Google reads out what I say using text to voice (most of the time it's usually off).&lt;/P&gt;</description>
      <pubDate>Sat, 08 Mar 2025 23:54:48 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684445#M53237</guid>
      <dc:creator>OptimumPrime</dc:creator>
      <dc:date>2025-03-08T23:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684483#M53242</link>
      <description>&lt;P&gt;But hopefully this time they will realize their problem sooner and fix it. I've also been thinking about Alexa&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 07:50:30 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/684483#M53242</guid>
      <dc:creator>Patrik2</dc:creator>
      <dc:date>2025-03-09T07:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/689503#M53914</link>
      <description>&lt;P&gt;Hi Folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for posting in the community. I apologize that you're experiencing trouble with your starter routines on your Nest Mini 2nd Gen, specifically with voice command routines. I understand how frustrating this must be. Let's work together to find a solution.&lt;/P&gt;
&lt;P&gt;To assist you further, I need to ask a few questions:&lt;/P&gt;
&lt;UL class="custom-disc"&gt;
&lt;LI&gt;
&lt;P&gt;Are the routines set up for the &lt;STRONG&gt;household&lt;/STRONG&gt; or &lt;STRONG&gt;personal &lt;/STRONG&gt;option?&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;When did the situation start?&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;What troubleshooting steps have you taken so far?&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;In the meantime, please try deleting one or two of the routines and setting them up again. Then, try starting the routines once more.&lt;/P&gt;
&lt;P&gt;Keep me posted on how it goes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Byron&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 18:49:23 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/689503#M53914</guid>
      <dc:creator>ByronP</dc:creator>
      <dc:date>2025-03-11T18:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/689556#M53921</link>
      <description>&lt;P&gt;These routines are set up for the household.&lt;/P&gt;&lt;P&gt;The situation started around March 5th.&lt;/P&gt;&lt;P&gt;The only solution to eliminate the problems was to split the script into separate automations, then everything works correctly.&lt;/P&gt;&lt;P&gt;I tried deleting the routines and creating new ones, but it didn't help.&lt;/P&gt;&lt;P&gt;Exactly the same problem started at the same time for multiple users.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 19:10:41 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/689556#M53921</guid>
      <dc:creator>Patrik2</dc:creator>
      <dc:date>2025-03-11T19:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/690088#M53958</link>
      <description>&lt;P&gt;Patrik2 has put it succinctly.&lt;/P&gt;&lt;P&gt;The routines are all created via the script editor from Google home web. As far as I am aware, these routines can ONLY be household, not personal.&lt;/P&gt;&lt;P&gt;Rest of the questions were already answered in the first post. Reading that would be a first step to resolving the issue.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 00:33:28 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/690088#M53958</guid>
      <dc:creator>OptimumPrime</dc:creator>
      <dc:date>2025-03-12T00:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/690156#M53963</link>
      <description>&lt;P&gt;Hi Folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your responses. I appreciate the information provided. Help's here.&lt;/P&gt;
&lt;P&gt;Please answer these additional questions:&lt;/P&gt;
&lt;UL class="custom-disc"&gt;
&lt;LI&gt;
&lt;P&gt;When did you expect the routine to start?&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Was this routine created using the Google Home app or a third-party app?&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Is the Activate Routine toggle enabled?&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;What starters do you have configured to start the routine? Which specific starter do you think should have activated the routine?&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Can you find an entry in the Activity tab for the routine running?&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Keep me posted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Byron&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 01:07:58 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/690156#M53963</guid>
      <dc:creator>ByronP</dc:creator>
      <dc:date>2025-03-12T01:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/690378#M53978</link>
      <description>&lt;P&gt;As noted in the original post, the routines are not scheduled, they are triggered with a voice command via "Ok Google".&lt;/P&gt;&lt;P&gt;These issues started a week ago without any changes from our end.&lt;/P&gt;&lt;P&gt;To reiterate the issue:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When a single script has multiple automations, each automation containing separate "assistant.event.OkGoogle" starters, no matter which starter we trigger the furthest top action in the entire script is executed. Prior to 1 week ago, the appropriate action (for each individual trigger) would be executed.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;There's an example in the first post, all of the necessary information is available above. Please escalate this to be investigated.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 04:51:05 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/690378#M53978</guid>
      <dc:creator>mpn554</dc:creator>
      <dc:date>2025-03-12T04:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/695449#M54172</link>
      <description>&lt;P&gt;Oh, it's so clear from the questions being asked by the "Community Specialist" that the issue is still not fully understood. One might even say that a solution isn't exactly on the horizon. But then again, considering this isn't the first time this problem has popped up, and it took over 6 months to fix last time, I wouldn't be holding my breath for any quick fixes.&lt;/P&gt;&lt;P&gt;In the best-case scenario, you might want to consider separating the automations into their own scripts. That's exactly what I did—after 6 hours and 387 scripts later, I managed to get everything working again.&lt;/P&gt;&lt;P&gt;Now, I don’t have to sit around waiting for another half-year for a solution to appear.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 03:05:46 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/695449#M54172</guid>
      <dc:creator>OptimumPrime</dc:creator>
      <dc:date>2025-03-14T03:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Custom voice command, which contain 2 or more starters</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/697378#M54220</link>
      <description>&lt;P&gt;Hi Folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your insight. I understand your frustration regarding this situation, and I apologize for the misunderstanding. We're always looking for improvements. Please share your experiences and thoughts by submitting them through the &lt;A href="https://google.qualtrics.com/jfe/form/SV_2aStd8wsbcLGvwG?sjid=4270807516549658131-NA" target="_self"&gt;feedback&lt;/A&gt; form, so we can address this concern in future updates.&lt;/P&gt;
&lt;P&gt;Please let me know if you have any further questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Byron&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 18:20:57 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Custom-voice-command-which-contain-2-or-more-starters/m-p/697378#M54220</guid>
      <dc:creator>ByronP</dc:creator>
      <dc:date>2025-03-14T18:20:57Z</dc:date>
    </item>
  </channel>
</rss>

