for some reason confirmation is not working for me. VC does the commands and do not wait for my confirmation. here is the sequence:
I say good morning, triggering the morning routine command.
this commend say if I want weather forecast, then trigger the weather.confirmation this command requires confirmation ... if confirmed it will give the weather forecast by triggering weather.info
then the first command morning routine will say if I want to take a bike ride then trigger bixi.confirmation this command requires confirmation .... if confirmed triggers bixi.recommendation
All TTS is done with Sync ...
I can't figure why VC is not waiting for my confirmation ... just trigger the commands one after the other ...
here is the main commands:
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 1.9.5.1-->
<command id="428" name="Morning Routine" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>VC.TriggerEvent</cmdType>
<params>
<param>Greetings</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.TriggerEvent</cmdType>
<params>
<param>feedback</param>
<param>GN-006</param>
<param>1</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.Pause</cmdType>
<params>
<param>500</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.TriggerEvent</cmdType>
<params>
<param>Weather.Confirmation</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.Pause</cmdType>
<params>
<param>2000</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.TriggerEvent</cmdType>
<params>
<param>feedback</param>
<param>GN-007</param>
<param>1</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.TriggerEvent</cmdType>
<params>
<param>Bixi.Confirmation</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType />
<params />
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>Good Morning</phrase>
</command>
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 1.9.5.1-->
<command id="454" name="Weather Confirmation" enabled="true" alwaysOn="False" confirm="True" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>VC.TriggerEvent</cmdType>
<params>
<param>Weather.Info</param>
<param>Weather</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.Pause</cmdType>
<params>
<param>500</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.TriggerEvent</cmdType>
<params>
<param>Weather.Recommedations</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<event>Weather.Confirmation</event>
</command>
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 1.9.5.1-->
<command id="1032" name="Bixi Confirmation" enabled="true" alwaysOn="False" confirm="True" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>VC.TriggerEvent</cmdType>
<params>
<param>Bixi.Recommendation</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<event>Bixi.Confirmation</event>
</command>