Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Bray90820

Pages: [1]
1
VoxCommando Basics and Core Features / Randomly issuing commands
« on: June 03, 2018, 08:18:30 PM »
I have Voxcommando set to prefix mode and at random times even when the room is silent Voxcommando will fire off a command using windows 10 with a Jabra 410 Microphone/Speaker

2
VoxCommando Basics and Core Features / Payload dictation with numbers
« on: June 30, 2017, 07:14:11 PM »
So I am having a slight issue using my Alexa with Vox. I am using a payload dictation to play movies if I say play movie click or play movie good burger everything works. If I say play movie "born on the 4th of July" it reads it as 4th and doesn't recognize the command but if I use VoxWave on my phone it recognizes the command. It seems to happen that way  every time there is something with 1st 2nd 3rd etc...

3
Integration Ideas / Vox Echo integration issue
« on: June 14, 2017, 10:47:04 PM »
Kida a noob here so I am still learning stuff but I am using Vox To send commands to my echo I have a command that runs a CMD process then reads and speaks a text file the only way I could get it to read the text file was if I disabled TTS.GetLastText and Results.SetVar in the EchotoVC event most of the time it works fine sometimes the command gets stuck and only tells me what was last spoken

Code: [Select]
<?xml version="1.0" encoding="utf-8"?>
<!--C:\Users\Aaron\Desktop\VcGroup_Plex.xml-->
<!--This commandGroup xml file was exported from VoxCommando-->
<VoiceCommands version="2.2.3.5">
    <commandGroup open="True" name="Plex" enabled="True" prefix="" priority="0" requiredProcess="" description="">
        <command id="750" name="TV Shows" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
            <action>
                <cmdType>Launch.CMD</cmdType>
                <params>
                    <param>Powershell C:\Users\Aaron\Alexa\Plex\TV_Show.ps1 &gt; C:\Users\Aaron\Alexa\Plex\Output.txt</param>
                </params>
                <cmdRepeat>1</cmdRepeat>
            </action>
            <action>
                <cmdType>VC.Pause</cmdType>
                <params>
                    <param>500</param>
                </params>
                <cmdRepeat>1</cmdRepeat>
            </action>
            <action>
                <cmdType>File.Read</cmdType>
                <params>
                    <param>C:\Users\Aaron\Alexa\Plex\Output.txt</param>
                    <param>0</param>
                </params>
                <cmdRepeat>1</cmdRepeat>
            </action>
            <action>
                <cmdType>TTS.Speak</cmdType>
                <params>
                    <param>{LastResult}</param>
                </params>
                <cmdRepeat>1</cmdRepeat>
            </action>
            <phrase>When did this Episode Air</phrase>
        </command>
    </commandGroup>
</VoiceCommands>

4
Tutorials / Ordering Actions
« on: June 01, 2017, 04:54:41 AM »
So I have searched all over and have not found an answer to this question. What I wanna do is first create an action then do a regular payload dictation then after the dictation is done run another action. Right now all that happens is both actions run at the same time after the voice dictation has completed

Pages: [1]