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

Pages: [1] 2 3 ... 515
1
You are welcome.

It would not surprise me if a system restore were responsible for the problem in the first place.

Anyway the solution is as follows.

Open options, then go to the "variables" tab.
uncheck "save and restore variables automatically"
restart VC.

If you use this feature you can turn it back on again after restarting VC.

2
If so, send me a private message. I should have some time tomorrow.

3
I'm very confused by the error in the log. Any chance we could screen share and look at it together?

4
Are you running these actions with the correct access token and then replacing them in the log?  Or did you forget to put the correct URL with the correct access token back into the action fields?

5
It looks correct to me.  I would need to see a log to help you further.

6
Hi Tom.

Just scrape will put that string with the colour in to the {LastResult} variable.  You could use an action like OSD.Show {LastResult} and it would show you {"id":"123","attribute":"colorName","value":"Red"}

But you want to isolate the colour from the rest of that info so you need to use result.regex to search the string for a matching pattern.

I've created a command that does this for you to get the "value".  It will work for anything that returns a value string. Note that if you are asking for a number like dim level then the pattern will be a bit different because the json won't have quotes around the value.  You can paste this xml into your editor to get an idea of how the macro should work.

Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.5.0.2-->
<command id="1329" name="get device info" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <action>
    <cmdType>Scrape</cmdType>
    <params>
      <param>http://192.168.123.123/apps/api/543/devices/123/attribute/colorName?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>Results.RegEx</cmdType>
    <params>
      <param>"value":"(.*?)"</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>OSD.ShowText</cmdType>
    <params>
      <param>{Match.1}</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
</command>

7
General / Re: Amazing new podcast
« on: November 01, 2024, 06:51:39 PM »
Thanks PegLeg. Agreed!  ;D

8
General / Amazing new podcast
« on: October 04, 2024, 10:06:47 AM »

9
General Discussion / Re: Still nothing like this around.
« on: August 15, 2024, 03:32:23 PM »
Thanks Achel.

I'm glad you still appreciate VC.  I'm not really working on developing anything new at this point and no AI. 

My life has gone in other directions and I'm doing less programming.

Also there just isn't enough interest in VC now due to the more commercial cloud based stuff.  Trying to keep up with new and changing APIs etc. is also very time consuming.

If you want to solve your offline licensing issues send me a PM and maybe I can figure something out for you.

10
Windows 8 / 10 / Re: win 10 recognition
« on: April 24, 2024, 12:04:05 PM »
Please post your question in Russian.

11
Vera Home Automation Controller / Re: Getting started with Vera
« on: January 05, 2024, 12:02:32 PM »
I did not like the direction Ezlo was going so I switched to Hubitat.  So if the API has changed from what we were using with Vera you will have to use HTTP actions.  I won't be making a plugin for Ezlo, but you probably don't really need one, as long as they have a decent http API.

Here is a starting point.
https://support.ezlo.com/hc/en-us/articles/8165438132252-Ezlo-Platform-How-to-Use-HTTP-API-Commands-AKA-Luup-Requests

 The simplest thing would probably be to turn off authentication in Ezlo, and then start with something simple to see if you get a response.

https://192.168.0.11:17000/v1/method/hub/info/get

You would need to use the correct IP address for you hub.

12
MediaMonkey / Re: MediaMonkey 5
« on: November 21, 2023, 12:43:11 PM »
Nope!

13
That's a weird one.  I don't have any ideas how that might happen but I do see in the log that VoxCommando was installed in C:\Program files (x86) 

It should not be installed in program files.  There is a BOLD notice when you first install VC that you should not put it there.

Maybe try a clean installation to a normal unprotected folder like C:\VoxCommando (for example) and see if it makes any difference.

Also, I don't know but maybe rename the wav file using only ascii characters?

14
Off Topic (not related to VC) / Re: Drone Life
« on: October 11, 2023, 05:23:27 PM »
Wow.  You live on a tiny planet Jon!

15
I have no idea.

Pages: [1] 2 3 ... 515