<?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[Topics tagged with google assistan]]></title><description><![CDATA[A list of topics that have been tagged with google assistan]]></description><link>https://www.triggercmd.com/forum/tags/google assistan</link><generator>RSS for Node</generator><lastBuildDate>Wed, 13 May 2026 16:38:50 GMT</lastBuildDate><atom:link href="https://www.triggercmd.com/forum/tags/google assistan.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[Error Triggercmd Smart Home with google assistant]]></title><description><![CDATA[<p dir="auto">Awesome <a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/23372">@Valter-Santos</a> !  Thanks for your patience, and for showing me this bug.  I'm working on the fix now.</p>
<p dir="auto">EDIT:  It should be fixed now, so it won't error even if you do have multiple triggers with the same name on the same computer.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2542/error-triggercmd-smart-home-with-google-assistant</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2542/error-triggercmd-smart-home-with-google-assistant</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Run a HomeGenie macro(script, scene)]]></title><description><![CDATA[<p dir="auto"><a href="https://genielabs.github.io/HomeGenie/#/about" rel="nofollow ugc">HomeGenie</a> HG is capable of creating Macros(Scenes) which are then saved as programs via a macro wizard(point and click). As well you can create programs inside HG using different coding languages (c#, javascript &amp;python). When you save a Macro or coded program HG assigns it a Program Number It is with this number that you can run it via the API and a curl call. As I did here <a href="https://www.triggercmd.com/forum/topic/1970/alexa-google-panic-alarm">https://www.triggercmd.com/forum/topic/1970/alexa-google-panic-alarm</a><br />
This adds a whole new array of things TRIGGERcmd can do with just one Alexa or Google call.<br />
The Command you'd use is simply</p>
<pre><code>curl http://ADDRESS/api/HomeAutomation.HomeGenie.Automation/Programs.Run/NUM
</code></pre>
<p dir="auto">Simply change the ADDRESS to your HG IP &amp; Port and change NUM to the HG program number you wish to run.</p>
<p dir="auto">I just tested this creating a simple macro using the record macro function (bottom right under actions) in HG.<br />
This turned a light on then of then armed my security system then turned another different light on then of to indicate the security system was armed. Every thing was triggered!</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1973/run-a-homegenie-macro-script-scene</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1973/run-a-homegenie-macro-script-scene</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Alexa Google Panic Alarm]]></title><description><![CDATA[<p dir="auto">Yesterday I did a clean up of my HomeGenie disabling things I thought I no longer needed. After this I tested my Panic Alarm and discovered there were a few things required that I had left out. These may have been set by default with the initial install of HomeGenie.</p>

Besides the Demo-Toggle Door having to be enabled the Virtual Modules Demo program must also be enabled.
As well the Automation.Demo 2 "DoorSensor" need to have the options to "Use as security sensor" and "Also trigger when armed Home" checked.
The Automation.Demo 2 "DoorSensor" has to be in the closed condition prior to arming the security widget or you will need to send 2 panic calls

]]></description><link>https://www.triggercmd.com/forum/topic/1970/alexa-google-panic-alarm</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1970/alexa-google-panic-alarm</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Arm&#x2F;Disarm Security system via Google&#x2F;Alexa]]></title><description><![CDATA[<p dir="auto">Here's the command to arm the HG security system widget to armed home.</p>
curl http://HGAddress/api/HomeAutomation.HomeGenie.Automation/90/Control.ArmHome

]]></description><link>https://www.triggercmd.com/forum/topic/1969/arm-disarm-security-system-via-google-alexa</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1969/arm-disarm-security-system-via-google-alexa</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Check DuckDNS connection status&#x2F;update]]></title><description><![CDATA[<p dir="auto">I created a bash script for my off grid  HomeGenie Server similar to this which displays the Status and current IP in a widget.<br />
It is on a DSL line so the IP does change from time to time.  The url calls are posted on the <a href="https://www.duckdns.org/" rel="nofollow ugc">DuckDNS.org</a> site.<br />
I converted it to a python3 <a href="http://Ducks.py" rel="nofollow ugc">Ducks.py</a> script for TRIGGERcmd.<br />
you'll need a free DuckDNS account  and create a domain and get a token for that domain name<br />
the script looks like this:</p>
<pre><code>#Libraries

import requests
import os
url = "https://www.duckdns.org/update?domains=YOURDOMAIN&amp;token=YOURTOKEN"
result = requests.get(url)
if result.text == "OK":
 os.system ('~/.TRIGGERcmdData/sendresult.sh ' + result.text)
else:
 os.system ('~/.TRIGGERcmdData/sendresult.sh ' + 'Broken')
# Print to commandline
print (result.text)
</code></pre>
<p dir="auto">replace "YOURDOMAIN" with the one you created and replace "YOURTOKEN" with what DuckDNS asigns you.</p>
<p dir="auto">I added this line to my commands.json text</p>
<pre><code>{"trigger":"Duck D N S","command":"python3 /home/pi/scripts/Ducks.py","ground":"background","voice":"Duck D N S","voiceReply":"The Duck D N S conection is {{result}}","allowParams": "false"}
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/topic/1967/check-duckdns-connection-status-update</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1967/check-duckdns-connection-status-update</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Say room temperature and humidity]]></title><description><![CDATA[<p dir="auto">If your like me and find the decimal point in the return a bit confusing you can change the line</p>
 os.system('~/.TRIGGERcmdData/sendresult.sh ' + 'Temp={0:0.1f}  Humidity={1:0.1f}'.format(t,h))

<p dir="auto">to</p>
os.system('~/.TRIGGERcmdData/sendresult.sh ' + 'Temp={0:0.0f}  Humidity={1:0.0f}'.format(t,h))

<p dir="auto">if you wish the return to send a Fahrenheit value instead of Celsius you can add the line</p>
t = (t* 1.8) + 32

<p dir="auto">just after the  line</p>
#Print Temperature and Humidity on Shell window

]]></description><link>https://www.triggercmd.com/forum/topic/1962/say-room-temperature-and-humidity</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1962/say-room-temperature-and-humidity</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Add quick link to TRIGGERcmd navigation]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@russ</a>  Perfect! Thanks.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1960/add-quick-link-to-triggercmd-navigation</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1960/add-quick-link-to-triggercmd-navigation</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Different word options for Alexa&#x2F; Google on&#x2F;off commands]]></title><description><![CDATA[<p dir="auto">I never was comfortable saying Alexa turn on for somethings same with saying turn off somethings. It just didn't seem natural for me. I played with voice recognition on Windows in programs I and others created in the 90s and knew alternate words could be programed and used for those.<br />
Would Some of these also work with Alexa and Google?</p>
<p dir="auto">A few years ago I experimented with using alternate words for "on" and "off" and found some that I felt more comfortable (natural) using then on or off for certain things<br />
Words like:</p>
<ul>
<li>activate</li>
<li>enable</li>
<li>run</li>
<li>start</li>
</ul>
<p dir="auto">always worked for Alexa and Google to turn things on.<br />
Words like deactivate, disable worked for off</p>
<p dir="auto">I don't remember all the alternatives but there were enough to satisfy me.<br />
Anyone found any other alternatives?</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1958/different-word-options-for-alexa-google-on-off-commands</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1958/different-word-options-for-alexa-google-on-off-commands</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Feature request: Add ability to Dim with Alexa &amp; Google]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/13362">@tuicemen</a>,</p>
<p dir="auto">This is actually wrong ^. "deviceType":"light" is not a thing.</p>
<p dir="auto">If adding that made it work, it's because when you change a command, TRIGGERcmd deletes and re-creates the Alexa smart home device. That needed to happen for the Alexa device associated with your command to have the new brightness feature.</p>
<p dir="auto">Sorry I didn't tell you that sooner.  Any newly created commands will have the new brightness and color features.  Old commands just need to be changed so they get re-created.  Or you can delete and re-discover them at <a href="https://alexa.amazon.com" rel="nofollow ugc">https://alexa.amazon.com</a>.</p>
<p dir="auto">Also btw, only Alexa supports brightness and color so far.  I'll look into Google Assistant soon.</p>
<p dir="auto">EDIT 3/21/22:  The "TRIGGERcmd Smart Home" action on Google Assistant supports color and brightness now too.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1955/feature-request-add-ability-to-dim-with-alexa-google</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1955/feature-request-add-ability-to-dim-with-alexa-google</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[HomeGenie X10 control with single bash script]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@russ</a> thanks, I removed the deviceType from my json file and  had Alexa rediscover and they do still dim.  I edited my previous post.<br />
It should be noted that using dim turns the device to that value. So if you turn a light on (100%) then say dim 20% it doesn't set the light level to 80 but instead sets the light level to 20.<br />
At least that's the way it works for HG.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1941/homegenie-x10-control-with-single-bash-script</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1941/homegenie-x10-control-with-single-bash-script</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[YOUR Alexa&#x2F;Google Assistant account to YOUR TRIGGERcmd account]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/13362">@tuicemen</a>, good questions.</p>

You can link 1 Google account AND 1 Amazon account simultaneously to 1 TRIGGERcmd account.
Yes, if you use 2 Amazon accounts you'll need 2 TRIGGERcmd accounts.

]]></description><link>https://www.triggercmd.com/forum/topic/1100/your-alexa-google-assistant-account-to-your-triggercmd-account</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1100/your-alexa-google-assistant-account-to-your-triggercmd-account</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>