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.


Messages - vmail

Pages: [1]
1
Tips and Tricks / Re: Home Automation using Voxcommando
« on: January 29, 2013, 07:45:00 PM »
Here's my attempt


2
General Discussion / Re: Commands sent too quickly
« on: September 25, 2012, 03:28:34 PM »
Thanx, but how do I add in a delay if I have set a repeat command to 5? without having to manually enter the command in 5 times with a pause command between each one

Code: [Select]
<cmdRepeat>5</cmdRepeat>

3
General Discussion / Re: Sending commands to a webserver
« on: September 25, 2012, 11:22:05 AM »
yeah found it, the free version just froze, and not sure how to get the paid version to work properly, will play with it later

4
General Discussion / Commands sent too quickly
« on: September 25, 2012, 11:20:22 AM »
Hi, how do I add a 100ms delay between commands or repeat commands?

Code: [Select]
<command id="294" name="BBC One HD" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
            <action>
                <cmdType>Scrape</cmdType>
                <cmdString>http://127.0.0.1/Samsung/samsungremote.php?key=5</cmdString>
                <cmdRepeat>1</cmdRepeat>
            </action>
            <action>
                <cmdType>Scrape</cmdType>
                <cmdString>http://127.0.0.1/Samsung/samsungremote.php?key=0</cmdString>
                <cmdRepeat>1</cmdRepeat>
            </action>
<phrase>goto B B C 1 H D</phrase>
        </command>

Code: [Select]
<command id="273" name="Volume Up" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
            <action>
                <cmdType>Scrape</cmdType>
                <cmdString>http://127.0.0.1/Samsung/samsungremote.php?key=VOLUP</cmdString>
                <cmdRepeat>5</cmdRepeat>
            </action>
            <phrase>volume up</phrase>
        </command>

Also is there a way to put voxcommando into standby after 1 minute after the last command?

5
General Discussion / Re: Sending commands to a webserver
« on: September 24, 2012, 07:25:47 PM »
what is this?

utoplay=1&rel=0&enablejsapi=1&playerapiid=ytplayer

6
General Discussion / Re: Sending commands to a webserver
« on: September 24, 2012, 06:47:52 PM »
Thank you, That worked

Can I setup a tree system, eg

if I say "Control TV", and then later I say "Menu" it send the menu command for the TV

then if I say "Control Sky", and then I say "Guide" it sends the guide command to the sky box and not the TV

a bit like an interlock in crestron

Also, where is the iPhone app?

7
General Discussion / Sending commands to a webserver
« on: September 24, 2012, 05:36:45 PM »
Hi, this command works but it keeps creating new instances of internet explorer (hidden) and I cant terminate them in task manager, after a while I run out of RAM.

Code: [Select]
<command id="258" name="Right" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="" >
            <action>
                <cmdType>Launch.Hidden</cmdType>
                <cmdString>C:\Program Files (x86)\Internet Explorer\iexplore.exe&amp;&amp;http://127.0.0.1/Samsung/samsungremote.php?key=RIGHT</cmdString>
                <cmdRepeat>1</cmdRepeat>
            </action>
            <phrase>tv right</phrase>
        </command>

Is there a way I can open port 81, send some data, when data is received back then close port 81? I know what HTTP data I need to send.

Pages: [1]