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 - achel

Pages: [1] 2 3
1
VoxCommando Basics and Core Features / Re: Echo Dot Integration 2018
« on: June 11, 2019, 12:02:16 PM »
Hello,

I have worked out how to include authorization from the username and password defined within the Simple Web Server. The following refers to step

Quote
39. Delete everything from the codebox and paste in the following code:

Perform the following AFTER you have pasted rablack97's code in the Lambda Function.

Firstly, just before the
Code: [Select]
exports.handler = function (event, context{ line declare two new variables:
Code: [Select]
var username = 'yourUsername';
var password = 'yourPassword';
which must match the username and password you used for the Simple Web Server.

Secondly, go to this line which is around line ~90:
Code: [Select]
var get_options = {
        host: VC_ip,
        port: VC_Port,
        path: VC_uri
};
On this you want to add a new attribute called headers which will pass the username and password when sending the http request, like so:
Code: [Select]
    var get_options = {
        host: VC_ip,
        port: VC_Port,
        path: VC_uri,
            headers: {
                'Authorization': 'Basic ' + new Buffer(yourUsername + ':' + yourPassword).toString('base64')
            }

    };


Now it should work, hope this helps.

Let me know if I have done something incorrect or not suitable for VoxCommando.


2
VoxCommando Basics and Core Features / Re: Echo Dot Integration 2018
« on: June 11, 2019, 11:06:21 AM »
Hello,

It is all setup successfully, thank you taking the time to write the guide.
When I put a username and password in Simple Web Server it obviously stops working, can I use this custom Alexa Skill with a Username and Password to get onto the Simple Web Server, or is there some limitation that doesn't allow this to happen?


Thanks in advanced,

Achel

3
OK thanks will do

4
I finally got round to attempting this project, but I cannot see any of the pictures. I am using Firefox. What has happened to them, have they expired? Or has the user removed them?

5
Other Plugins / Re: Google Speech on Fresh Start
« on: April 04, 2019, 01:21:20 PM »
Thanks much fixed  :) :)

6
Other Plugins / Google Speech on Fresh Start
« on: April 04, 2019, 05:03:05 AM »
Maybe I am doing something wrong,

so if I start Google Speech by navigating to the Plugins>TCP>Google Speech>Launch GS everything works fine.

If I create in the LCB launch GS with TCP server start and "VC loaded" to trigger it, the Google Page opens, it is green like it is connected, it also listens and produces alternates and says it is sending unique strings but they do not appear in the history and Vox does not react to anything from Google Speech.

Is there any additional steps I am missing to get it to start when VC loads?

Thanks


7
Other Plugins / Re: google speech no socket
« on: December 06, 2018, 03:07:52 PM »
Thank you very much for the fast response, I am constantly surprised for how fantastic the customer support is.

 I will download the new version.

For completeness and just to get to find what the problem was I've attached what I see when checked, what I gather the port was listening.

vox just fixed one of the main problems I had with Google Amazon and apple and that's the constant listening, tinfoil hats were getting expensive.

Correct me if I'm wrong now I can have my cake and eat it,  I can use vox as usual and then turn the mic on and use Google speech with a command throug Vox and then turn it off and continue using vox in a private way,  avoiding the whole always on microphone to the cloud of Google.  Is this right.

This is all very exciting thank you very much for this update.

 just a side note when I install vox Commando  Windows Defender pops up with unknown publisher now I know most people who use Vox commando are enthusiasts they know how to get round it just thought I'd make you aware

8
Other Plugins / google speech no socket
« on: December 06, 2018, 01:30:30 AM »
when setting up all test work from web server.
But when i press enable google speech on the google speech tab i get the message i have attach in this post.

9
Vera Home Automation Controller / Re: humidity not being received
« on: November 20, 2016, 04:18:21 PM »
Quote
Any chance that the humidity event variable has somehow been disabled?
yes it was thanks nime5ter

10
Vera Home Automation Controller / humidity not being received
« on: November 20, 2016, 01:56:10 PM »
hello
humidity change  not being received by vox in history window.
if i  use in lcb vera.get  it will report it.
i get temp and others but not humidity in history window.
any ideas why would be great.

thanks


11
VoxWav Free and VoxWav Pro / Re: Vox commando turn mic on voxwav
« on: July 14, 2015, 12:21:29 PM »
OK thanks for fast reply

12
VoxWav Free and VoxWav Pro / Vox commando turn mic on voxwav
« on: July 14, 2015, 11:45:24 AM »
Hello
Is there a way to get vox commando to turn mic on/off in voxwav is in background mode .

As I would like to make a push to talk button on terremote http://www.terremote.com/

13
Hmm my to do list.
Quote
need milk.
phone mum.
jump rope.

and nime5ter's to do list.
Quote
Rule the world.
Eat breakfast.
Call Mum.
Walk the dog.

The thing that comes to mind is my teachers saying "Allen, you must try harder" ;D.

Thanks again, I have got it all plugged in and up and running.

I'll wait till next week for how to get vox to teach me French Nime5ter

14
Wow this has made my night.
I'm at work at the moment with the video I dont have to wait
till I get home to see it in action.
when I get back I will add it to my system and let you know.

As always above and beyond helpful nime5ter thank somuch for your time.

15
Hello

I am using  Skype to message vox with commands for reminders, I start my message with Rr and vox then knows it is a reminder. it then put it through the RegEx plug in to write reminders to a note pad I have got it to do this but I  would like it to number the lines it writes to notepad.

exsample

I text to vox:

Rr need milk
Rr phone mum
Rr jump rope

note pad then reads  at the moment

need milk
phone mum
jump rope

I would like it to read

1. need milk
2. phone mum
3. jump rope
Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.1.3.3-->
<command id="566" name="newcommandname" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <if ifBlockDisabled="False" ifNot="False">
    <ifType>(A)Contains(B)</ifType>
    <ifParams>{3}&amp;&amp;Rr</ifParams>
    <then>
      <action>
        <cmdType>OSD.ShowText</cmdType>
        <params>
          <param>works</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <action>
        <cmdType>File.Write</cmdType>
        <params>
          <param>F:\voxcommando\vera\Memory\skype.txt</param>
          <param>{3}rr</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <action>
        <cmdType>File.Read</cmdType>
        <params>
          <param>F:\voxcommando\vera\Memory\skype.txt</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <action>
        <cmdType>RegExTool.Open</cmdType>
        <params>
          <param>{LastResult}</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <action>
        <cmdType>Results.RegEx</cmdType>
        <params>
          <param>Rr (.*?)rr</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <action>
        <cmdType>File.AppendLine</cmdType>
        <params>
          <param>F:\voxcommando\vera\Memory\skype2.txt</param>
          <param>{Match.1}</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <action>
        <cmdType />
        <params />
        <cmdRepeat>1</cmdRepeat>
      </action>
    </then>
    <else>
      <action>
        <cmdType>OSD.ShowText</cmdType>
        <params>
          <param>nothing</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
    </else>
  </if>
  <event>allen on skype</event>
</command>

I would like this so I could say to vox reminder/task 1 is completed and then it would delete that line and then renumber them. I use not pad so I can say show me my reminders and vox will open note pad or say tell me and she reads it.

if this can be done any help wold be cool.

thanks allen

Pages: [1] 2 3