UI7 modes + Delay?? (json??)

Hello
I am writing a c# application to quick change modes in Vera UI7 and show my cameras etc etc on my desktop depending on conditions on my computer.
I have not been able to find any information on the delay that?s used when going from home => away, night, vacation.
This page does not mention how this value is set or where I found the current value?
http://wiki.mios.com/index.php/House_Modes
The request url to get the current mode is not including that value ether.
http://IP:3480/data_request?id=variableget&Variable=Mode

My current version of the application requires me to manually add the delay and then wait until the manual delay is done, and then request information from Vera and update the GUI. This may work but I would like all information in the application to be information from Vera. If possible i would like to not scrape the Vera controllers page for this information.
It should be nice if this information is available with Json 
Anyone that could point me to the correct path or has found this information?

The default value is 30 and is set at the bottom of the My Modes config page

How much time to wait before changing mode ?
Wait 30 seconds before changing to any mode other than home
Wait 0 seconds before reporting a motion, door, window tripped

Thanks for the answer. :slight_smile:

Yes I found that in the web GUI earlier and change the delay to more in my system to be able to use a tagg reader.

The problem is that I can?t find this with any API like XML, JSON or url. As I written in my post I set this value in my application for the moment. Because my application is free and I uploaded it to my blog I would like all information to come from the Vera system instead of guessing or allowing users to and delay in my application 

Take a look at the Variables defined on Device 1 Zwave. Below is a screenshot from the Virtual Panel plugin from that device. You will notice the poll delay settings on this device.

Thanks for the answer :slight_smile:

It does not seems like this values are the same as the ones I configured in my Vera Lite 

Values in Modes:
Wait 250 seconds before changing to any mode other than home
Wait 60 seconds before reporting a motion, door, window tripped

Values found with http://(VERAIP):3480/data_request?id=status&output_format=xml

I believe those polling values are actually for polling the zwave devices and not for the House modes.
I checked the HouseModes plugin and it only has Debug_mode, POLLING_RATE and HMode variables to offer.

From the Lua UPnP Variables and Actions (http://wiki.micasaverde.com/index.php/Luup_UPnP_Variables_and_Actions)

PollDelayInitial ui1 Number of seconds after the LuaUPnP engine has (re-)started before the polling loop begins.
PollDelayDeadTime ui1 Number of seconds MiOS must not have transmitted any non-poll command before the next poll command is sent.
PollMinDelay ui1 Number of seconds between poll commands.
PollFrequency ui1 Minimum number of seconds between poll commands to the same node.

These values are in user data as mode_change_delay and breach_delay. I don’t know if they can be found elsewhere but this is where the UI is getting it from.

http://:3480/data_request?id=lu_user_data2&output_format=json

That was correct, the url had the information http://:3480/data_request?id=lu_user_data2&output_format=json

breach_delay : 60
mode_change_delay : 250

Thanks for the information and the help :slight_smile: