Enter forum description here ...
0

Variable Cylic Sending of Commands

Lee Douglas 7 years ago in Devices / Http updated by Ricardo Pinto | visiontech pt 7 years ago 4

To reduce traffic, I generally set commands to send cyclically at around 5 minute intervals.

In certain circumstances, I would want to "boost" that to get 30 second responses temporarily to closely monitor conditions.

Is there a way to Send Cyclically on a variable time period?

0

I am not sure how to configure http > Boolean with url /api

n muthu N Muthu 7 years ago in Devices / Http updated by Rait Lotamõis 7 years ago 1

I am not sure how  to  configure http  > Boolean with below  url /api 

I have to pass  l1498904289859 to open window  http://192.168.2.109:8080/send?deviceMac=b4430dd11511&codeId=l1498904289859 Close window  l1498900850560 http://192.168.2.109:8080/send?deviceMac=b4430dd11511&codeId=l1498900850560

using  browser  to enter  url its working  and  programme  > set the  http request also work  

0
Under review

How to call a url from jigsaw

tech 7 years ago in Devices / Http updated by ComfortClick Support 7 years ago 1
0

IP Ping

Andy Gill 7 years ago in Devices / Http updated by Rait Lotamõis 7 years ago 1

Any ideas how we could generate a ping request to an IP from the bOS, and receive a true/false response to whether IP is live or not.

0

HTTP request stopping

Andy Gill 7 years ago in Devices / Http 0

Hi There,


I have a Http Json type that fetches meter data, I'm finding it stops fetching randomly once stopped does not come back until I change for example the encoding? it still shows as connected?

So one is this to do with timeout? if so is there a way of detecting it's happened and resetting something automatically?

0
Answered

http basic string manipulation

Andy Gill 8 years ago in Devices / Http updated by Joachim 5 years ago 12

Hi There,


Usinng the Http basic I can bring a string back from an API to another device, but that string contains data I do not need, I only want the present value from this response: {"present-value":22.285308837890625,"object-id":"0.1001","object-instance":"1001","object-type":"0","device-id":"0","href":"http://192.168.0.100:47800/api/v1/bacnet/devices/0/objects/0.1001"}


Is this possible in Comfort Clik, in short I wanto to populate a temperature in comfort click using the present value in the above response?


Thanks


Answer

Hello,

it is possible to parse JSON and XML data from the response. If your response is in one of those formats it is quite easy to read out the data. Another way is to use REGEX and parse out any data from text, but that is harder.


Example for JSON:

{

"Sensor1": {
"Temperature": 10
}

}

On the main HTTP node chose parser type "Json"

If you would like to read out temperature from sensor 1 (value 10), create a new variable under HTTP node e.g. double and enter Sensor1.Temperature in the Token Name field.


Regards