VoxCommando

Help and Support (Using VoxCommando) => VoxCommando Basics and Core Features => Topic started by: shanekuz on September 21, 2015, 12:59:48 AM

Title: Passing parameters to events
Post by: shanekuz on September 21, 2015, 12:59:48 AM
Can anyone help me with this please?  I am calling a URL on to Voxcommander like this :

http://192.168.31.180:80/api/VC.TriggerEvent&&FAMILYLIGHTSON&&${intensity.percent}

to turn on my lights.

I can see in the logs that the percent is being passed into the Voxcommado web service but im not sure how to grab the 50 thats being passed in the ${intensity.percent} and use that as a variable in my commands that voxcommando is going to run.

Any tips would be great.
Title: Re: Passing parameters to events
Post by: PegLegTV on September 21, 2015, 01:58:52 AM
with what you shared we cant tell what that variables output looks like (${intensity.percent})
if you can post the exact text that is passed in payload 1 then we could help find the right solution or the right regex pattern to get just the percent number.

or if payload 1 is already just a number and your are trying to use payload 1 in some way then we will need more details on what your goal is, you can use payloads by using {1} = Payload 1, {2} = Payload 2, {3} = Payload 3....
Title: Re: Passing parameters to events
Post by: nime5ter on September 21, 2015, 08:17:42 AM
As PegLegTv notes, the VC.TriggerEvent action accepts payload values as optional parameters.

i.e., if you look up the action description for VC.TriggerEvent--either directly in VC or on the wiki--it provides information on what values are expected for the parameters:

http://voxcommando.com/mediawiki/index.php?title=Actions#TriggerEvent

Quote
VC.TriggerEvent
Triggers any commands that contain "Event"

Add as many extra parameters as you like, they will be treated as payloads.

Parameters: 1+
Event : Name of event to trigger [string]
Payload1 : optional payload [string]
Payload2 : optional payload [string]
Payload3 : optional payload [string]

http://voxcommando.com/mediawiki/index.php?title=Payloads
Title: Re: Passing parameters to events
Post by: shanekuz on September 22, 2015, 11:47:11 PM
Thank you for your help, the request comes though looking like
http://192.168.31.180:80/api/VC.TriggerEvent&&FAMILYLIGHTSON&&50  and I have tried using the {1} but this comes though empty which was why I asked the question as I'm clearly doing it wrong.

Shane
Title: Re: Passing parameters to events
Post by: PegLegTV on September 23, 2015, 01:27:44 AM
if payload 1 is showing as just digits then there is no need for regex,  :)

when you hover over the event in the history window what shows up in the little popup window?

Quote
I have tried using the {1} but this comes though empty

what have you tried, that lets you see that {1} is empty?
Title: Re: Passing parameters to events
Post by: shanekuz on September 23, 2015, 06:26:14 AM
Thanks so much for your help i have realized i was using {P1} not {1} and now its working fine.