Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Voice-activated HA via tasker
#1
Saw this video making the rounds on Google Plus about using tasker & voice-recognition. Will look into it myself later, since I already use tasker this shouldn't be too hard.
------------------------------------
Some of my devices: Sonos, Aeotec zWave, Nest, Rain8Net, Various H/T
What's next: CQC-Voice, Brultech GEM
My vlogs: https://www.youtube.com/c/IVBsHomeAutomation
Reply
#2
Holy crap did AutoVoice make this simple. I used this simple how-to guide. Took me all of a few minutes to set up my first voice-recognized command. Given that I already had the web server configured for inbound requests as per this guide, all I had to do was add another CQC inbound trigger for each command. So far its only "Closet Light On" and "Closet Light Off". Pretty simple to add new ones though.
------------------------------------
Some of my devices: Sonos, Aeotec zWave, Nest, Rain8Net, Various H/T
What's next: CQC-Voice, Brultech GEM
My vlogs: https://www.youtube.com/c/IVBsHomeAutomation
Reply
#3
That's awesome, I gotta get me a better android tablet... Although with the hardware buttons on the gTablet I could probably program one of those to use the voice without having to leave the CQC interface. Just wish I had more memory in that thing....

I do wish too that we could convince Dean to dig into the Kinect SDK. I think he would go crazy with it, image all the possibilities, voice recognition, gesture control, cameras, user recognition. Maybe once he is done classifying stuff... Smile
Wuench
My Home Theater/Automation Website

[THREAD=5957]BlueGlass CQC Config[/THREAD]
[THREAD=10624]Wuench's CQC Drivers[/THREAD]
Reply
#4
Here's the latest iteration of the use of AutoVoice...

Android Home Automation Demo Voice + NFC

Combines Tasker, AutoVoice and NFC tags.

zWave lock in action also included :-)

-Ben
Reply
#5
I used a few different words in sequence to deal with arming & disarming security. Problem is, I can't remember the damn words 80% of the time.

Is it "disarm vic security", "disarm security vic", "vic disarm security"?

vivek isn't recognized, so I need to use a nickname. And i'm not going back to what I got called in highschool. (deadwood. Don't ask.)
------------------------------------
Some of my devices: Sonos, Aeotec zWave, Nest, Rain8Net, Various H/T
What's next: CQC-Voice, Brultech GEM
My vlogs: https://www.youtube.com/c/IVBsHomeAutomation
Reply
#6
IVB Wrote:I used a few different words in sequence to deal with arming & disarming security. Problem is, I can't remember the damn words 80% of the time.

Is it "disarm vic security", "disarm security vic", "vic disarm security"?

vivek isn't recognized, so I need to use a nickname. And i'm not going back to what I got called in highschool. (deadwood. Don't ask.)

Vivek,

Are you by choice wanting to use multiple words to arm/disarm security or is that just how you are thinking about it? In other words, are you specifically wanting to look for the 3 words in order to trigger the event or is that just what you chose?

-Ben
Reply
#7
yes, doing it for security purposes. It triggers a URL which is visible from the outside via the CQC web server, so I figure the odds of someone knowing my IP, the right port, and the right sequence of words is nil.
------------------------------------
Some of my devices: Sonos, Aeotec zWave, Nest, Rain8Net, Various H/T
What's next: CQC-Voice, Brultech GEM
My vlogs: https://www.youtube.com/c/IVBsHomeAutomation
Reply
#8
IVB Wrote:yes, doing it for security purposes. It triggers a URL which is visible from the outside via the CQC web server, so I figure the odds of someone knowing my IP, the right port, and the right sequence of words is nil.

So at the point you are issuing the command are you on cellular or your home wifi network? I'm avoiding the security issue by only routing commands to CQC on the internal network. Eventually I may set up a SSH command shell, or something more secure but until I get it working to the level I have a vision of I'm going to avoid those complexities.

You might also consider the following:

1st profile
setting your initial trigger command to vic (the one you want to use to trigger CQC)
set the Command ID to vic

2nd profile
set your trigger command to "disarm security" or whatever (could be any of several different command variations using regex setting)
set Last Command ID to vic
trigger your alarm disarm

This way regardless of where you put "vic" it will process properly as it will pick up vic, and then process with out the vic for the remaining command text. Much more user friendly (and high WAF) though perhaps not quite as secure.

The thing to consider is that even with having a precise command sequence if the bad guy wants in they'll get in, so why make it hard to use for yourself?

-Ben
Reply
#9
Its over 3G. I'll probably simplify it soon, probably strip out the complexities, this was more to begin the thinking.
------------------------------------
Some of my devices: Sonos, Aeotec zWave, Nest, Rain8Net, Various H/T
What's next: CQC-Voice, Brultech GEM
My vlogs: https://www.youtube.com/c/IVBsHomeAutomation
Reply
#10
So, since I was digging into that stuff for other reasons today, and also saw some other folks talking about using Tasker with CQC via HTTP GET, I figured I'd take a couple hours and make it easier.

So I did an HTTP based trigger driver. I basically copied the existing generic listening trigger driver, created a new driver, and updated it to accept HTTP queries instead of raw strings. So you no longer have to use a web server CML macro that writes to a field to trigger an event. You can just directly train CQC to react to the GET commands. If you send something like this:

http://myhost/Test?1=value1&2=value2

The trainable part will be /Test, and the query parameters will be passed as the 2nd parameter to the action. Basically, what it does is set a fixed # character as the separator character (like how you can use a separator on other trigger drivers), then it rewrites the above as:

/Test#value1 value2

and queues that up as the command to invoke. So of course /Test is used to look up a trained action, and it invokes that action. The first action parameter is the key (/Test) and the second is the parameter values.

Be sure not to use a # character in any parameters (even if it's encoded since it will be decoded when the driver gets it.)

In actual fact you will always indicate a port, since you wouldn't want this driver listening on port 80. When you install the driver you indicate a port for it to listen on. If you indicate 9999, your URL would be:

http://myhost:9999/Test?1=value1&2=value2

You train it in the usual way, using the same interface as IR receivers. Just send the URL a few times to let it see that it's getting a good signal. Once it's received the string a few times successfully, it'll accept it as the new action key.

This will be in 4.3.914 if anyone wants to use it.
Dean Roddey
Explorans limites defectum
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  CQC Voice - What are you doing? gReatAutomation 2 1,640 07-17-2019, 04:28 AM
Last Post: gReatAutomation
  CQC Voice Use cases IVB 20 9,099 06-02-2018, 02:26 PM
Last Post: IVB
  CQC Voice Mics other than Kinect/Acoustic Magic IVB 2 2,192 05-28-2018, 10:52 AM
Last Post: Dean Roddey
  your sched/triggered/tasker/IFTTT events IVB 17 9,859 01-18-2018, 07:41 AM
Last Post: RichardU
  Mic for CQC Voice and other misc Q's znelbok 15 8,800 12-12-2017, 02:48 PM
Last Post: IVB
  CQC Voice zane 3 3,429 10-16-2017, 09:20 AM
Last Post: Dean Roddey
  anyone tasker scene <--> CQC? IVB 7 4,165 08-31-2016, 04:24 PM
Last Post: wuench
  how deep is your (echo voice control) love? IVB 197 54,358 05-23-2016, 08:47 AM
Last Post: Dean Roddey
  Tasker Question jbh5000 3 3,124 12-26-2013, 07:10 AM
Last Post: wuench
  Android based device Voice control of CQC How To Discussion Thread batwater 5 4,834 12-07-2013, 10:01 PM
Last Post: RichardU

Forum Jump:


Users browsing this thread: 1 Guest(s)