VoxCommando
General Discussion => General Discussion => Topic started by: ddl on December 27, 2013, 06:49:38 PM
-
Hi guys I was wondering if you could help me out with a project that I am working on that will include highlighting Vox Commandos features and benefits.
My company which operates in the US is primarily a residential remodeling and home technology integration company. In the next couple weeks to help promote my business I am having a video produced that will highlight some of the home automation products that my company offers.
Additionally, I plan to place emphasis on a select few of my favorite products and will demonstrate its features and benefits. The demonstration will take place in my showroom and I would like to include Vox Commando as it is one of my favorites.
To help spice up this video I was wondering if you could offer any ideas/commands that will allow me to highlight Vox Commandos ability to engage in a two way conversation. This does not have to be extravagant but I would like it to include something unique..
Any help would be appreciated.
-
My advice is to make sure it either does something useful, or provides some kind of useful information about your environment, weather, or other data you might care about. Straight two way conversation with a computer without accomplishing something gets old fast (IMO).
If you come up with something, post the command xml here and I will let you know if I have any suggestions on how you could improve it.
Otherwise, I think your request is far too vague for you to expect much of a response from anyone.
-
Personally, I like the conditional weather dialogues that have been posted to the forum. Dave has previously posted some fun commands, if you search the forum.
If you're a dog owner, something along the lines of:
"Computer, do you know what time it is?"
[computer gives time]
"I guess it's time to walk Marmaduke."
[amenable computer agrees.]
"What's it like out there?"
[Computer gives current weather/provides a conditional response depending on temperature and precipitation etc.].
Here's a very simplified version of the above, suitable for Canadian winter weather. It would have to be adapted for a U.S. audience (it uses Celsius degrees, not Fahrenheit, for one thing).
For "real world" uses the weather responses could definitely be more sophisticated and comprehensive. But if you're recording your video soon and have an idea of the expected conditions, it would be better to keep it simple and create command conditions that will work well just for the purpose of your demonstration.
<?xml version="1.0" encoding="utf-16"?>
<commandGroup open="True" name="Dog walking weather" enabled="True" prefix="" priority="0" requiredProcess="" description="">
<command id="801" name="What time is it" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>TTS.Speak</cmdType>
<cmdString>It's currently, {ShortTime}.</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>OSD.ShowText</cmdType>
<cmdString>It's currently {ShortTime}.</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>What time is it, Do you know what time it is, Any idea what time it is, Is it time to walk Marmaduke</phrase>
</command>
<command id="746" name="I'm going to walk the dog" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>TTS.SpeakSync</cmdType>
<cmdString>Good idea. Marmaduke will be happy to hear it.</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TTS.Speak</cmdType>
<cmdString>Make sure you're dressed for the weather.|Are you dressed for today's weather?</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>I'm going to walk the dog, Time to walk Marmaduke, I guess it's walkie time</phrase>
</command>
<command id="733" name="Current weather" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>WUnder.GetCustom</cmdType>
<cmdString>{C.temp_c}</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<if ifBlockDisabled="False" ifNot="False">
<ifType>(A)<(B)</ifType>
<ifParams>{LastResult}&&5</ifParams>
<then>
<action>
<cmdType>TTS.Speak</cmdType>
<cmdString>It's chilly out there, only {LastResult}, degrees. Don't forget your jacket.</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
</then>
<else>
<action>
<cmdType>TTS.Speak</cmdType>
<cmdString>It's {LastResult}, degrees. Could be worse.</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
</else>
</if>
<action>
<cmdType>WUnder.GetCustom</cmdType>
<cmdString>{C.weather}</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
<if ifBlockDisabled="False" ifNot="False">
<ifType>(A)Contains(B)</ifType>
<ifParams>{LastResult}&&Rain</ifParams>
<then>
<action>
<cmdType>TTS.Speak</cmdType>
<cmdString>In case you haven't looked out the window, it's currently raining. You may want to bring your umbrella.</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
</then>
<else />
</if>
<if ifBlockDisabled="False" ifNot="False">
<ifType>(A)Contains(B)</ifType>
<ifParams>{LastResult}&&Snow</ifParams>
<then>
<action>
<cmdType>TTS.Speak</cmdType>
<cmdString>There's also, {LastResult}, so make sure you're wearing good boots.</cmdString>
<cmdRepeat>1</cmdRepeat>
</action>
</then>
<else />
</if>
<phrase>What's it like outside, What's the weather like</phrase>
</command>
</commandGroup>
-
(The above obviously requires activation of the WUnder plugin, with the location localized to wherever you're at in the plugin settings.)
-
although it may be a little expensive, could you mock up a home automation system?
ask vox to turn the light on, light comes on, vox tells you that its done?/asks how bright you want the light?
-
Thanks all... Points taken. I think I will implement the weather code to us as an example.
ryz4eva - What do you mean by "mock up home automation system?"
-
Well if you go on youtube, you can see plenty of examples of people at conventions who are presenting a home automation systems or products , for example &feature=youtube_gdata_player.
If you can give the clients the ability to see a system being controlled by their voice, even if its just turning on a light, and then have tts confirmation then it would be a great
-
In other words when he said "mock up" he did not mean "mock up". He meant buy a home automation system. :biglaugh