Enter forum description here ...
0

ReadMProp failed ETS6

Kristián Vojčík 11 months ago in Devices / KNX 0

Hello.

I am getting this issue ReadMProp failed with Jigsaw version 1 and ETS 6 when trying program KNX over local network but diagnostic is working. Is there some fix for it?

0
Under review

update 4.10.3 after

István Gehl 11 months ago in bOS Configurator updated by D D 11 months ago 6

Image 4765

0

Http digest authentication

Valentin Popa 12 months ago in Devices / Http updated by Jürgen Jürgenson 12 months ago 3

I try to connect to Hikvision doorbell using http and authentication is Digest Auth. I connect successfully from Postman but not using http from confortclick. Any idea if http suport digest auth and how to do it?  

0

Extraction follows the energy consumption

Dan Sharpe 12 months ago in Devices / KNX updated by Jürgen Jürgenson 12 months ago 1

Hello

I have a KNX energy meter in front of a stove, and there is a 0-10V KNX regulation in front of the air extractor, which is already controlled, by percentage from 0-100%.

Energy, DPT type = 14.031

0-100%, DPT type = 5.001

With a consumption on the stove of, for example 300W, the air extraction level should be set to 15%.
At 500W, the level should be set to 25%.
At 1000W, the level should be set to 45%.

The stove's heating element, is switched on and off at a fixed time interval, and the interval becomes smaller, as the stove is regulated to a higher level, and the consumption is getting higher.
After all, the air extraction must remain constant, as long as the consumption is, for example between 300 and 500W.
When the stove is switched off (less than 0.10W), the extraction is desired to continue at 15W for 5 minutes.

0

Send message 15 minutes before schedule action

Sem Craeghs 12 months ago in bOS Configurator / Tasks updated by Ricardo Pinto | visiontech pt 12 months ago 2

Hello, 

Let's say that I would like to send a push message to the user 15 minutes before a schedule comes active:

The schedule will power off a device and I would like to inform the user, so he's able to disable the schedule if necessary.

How can I achieve this? I cannot find any way...

0

Multiple KNX IP interface connections?

Alexandros Toufexis 12 months ago in Devices / KNX updated 12 months ago 2

If we use the same KNX IP Interface or Router (in this case) on multiple points in bOS will bOS use only one channel of the KNX IP Router/Interface, or as many as the connection points?


For example, in a hotel, rooms A101 through A115 are under the same KNX line (1.1). The KNX IP Router of that Line supports 5 channels and its IP is 192.168.1.2. As shown in the picture, we've separated each room for a more clear structure. Is it possible to set all 15 rooms in bOS to the same KNX IP router or will the limit of the IP router will be reached?


Additionally, is there a difference between "KNX IP" and "KNXnet/IP (Falcon)" apart from the ability to remote program the KNX installation with the option of "KNX IP"?

Thank you in advance.

Image 4758

0

We are about to implement a project on a hotel building BMS system. We have some questions as follows.

LÊ NHÂN 12 months ago in Devices / Modbus updated 12 months ago 2

We are writing to inquire about the following topics for our upcoming hotel building BMS project:

  • What type of Comfortclick device is recommended for a hotel building BMS system?
  • How many devices does Comfortclick support to connect with the Modbus TCP protocol?
  • Can 2 devices be managed remotely on the same bOS interface account at the same time?

We appreciate your assistance.

0

Json parsing error - Missing token (Shelly Plus Plug S / MQTT)

netit 12 months ago in Devices / Other 0

Hello,

I sucessfully integrated a Shelly Plus Plug S via MQTT.

MQTT messages that contain "switch" updates (when it's turned on/off) are successfully interpreted. I catch them with Token Name : params.switch:0.output (see screenshot below).

Meanwhile, the Shelly device is also sending other MQTT messages with energy consumption information. When doing so, the parameter "output" is not present in the JSON file, resulting in a Exception error : Error parsing received data. Value cannot be null.Parameter name: value


Any advise how to prevent these errors ?

Thank you.

---

JSON message when "output" changes. This gets successfully parsed. Example of a switch off message :

{"src":"shellyplusplugs-e465b85ccccc","dst":"shellyplusplugs-e465b85ccccc/events","method":"NotifyStatus","params":{"ts":1701336805.47,"switch:0":{"id":0,"apower":0,"current":0,"output":false,"source":"WS_in","voltage":0}}}


Periodically JSON message to notify energy updates. These don't get successfully parsed (as it is missing the 'output' parameter. Example :


{"src":"shellyplusplugs-e465b85ccccc","dst":"shellyplusplugs-mytext/events","method":"NotifyStatus","params":{"ts":1701352440.40,"switch:0":{"id":0,"aenergy":{"by_minute":[5.012,8.202,0.000],"minute_ts":1701352439,"total":4.922}}}}

Image 4751

Image 4749

0
Under review

vasilis vounatsos

vasilis 12 months ago in Devices / KNX updated 12 months ago 3

I WOULD LIKE TO KNOW HOW TO PUT A BUTTON IN COMFORT CLICK WHICH CAN HANDLE A SHUTTER ACTUATOR (ROLLER SHTTER SWITCH N 523/3). I HAVE A MOOD MAKER (PUSH BUTTON 5WG1220-2AB21) WHICH THW FUNCION IS INPUTS,JOINTLYCONFIGURED. IT SEEMS LIKE LIKE ONE BUTTON IN ONE SINGLE GROUP ADDRESS. WITH WHAT BUTTON IN CONFORT CLICK I CAN SEPERATE THE TWO FUNCTIONS ?

0

RPC: 404 not found

netit 12 months ago in Devices / Other 0

Hello,

Is there a way to troubleshoot 404 errors on RPC or Comfortlick port 80 address ?

RPC is working perfectly well, and I have multiple devices/clients sending requests to RPC (eg : SetValue).

Meanwhile, I have one device/client (Shelly Plus Plug S) that I don't get to work and get the following error :

{ "code": 404,"message": "Not Found","headers": {"Connection": "close"}}

Some tests I did :

1/ A GET request to the toor address of Comfortclick is working (http)

2/ A POST request without the Authorization header is returning a 401 error as expected (http)

3/ In general, the device is not altering URLs (eg : uppercase/lowercase)

When I copy/past everything into https://reqbin.com/ to test the request, it works... This drives me crazy.

The problem is likely not on Comfortclick's side. But I'm unable to troubleshoot.

Any suggestions ?

Thank you !

----

let h = {
method: "POST",
url: "http://192.168.1.10/API/RPC/SetValue",
headers : {
'Content-Type': "application/json; charset=utf-8",
'Authorization': "Basic UlBDeWQ6ZGhZNjdhxxx4MlNpdWFo"
},
body : '{"objectName":"Devices\\KNX\\Light 1","valueName":"Value","value":"false"}',
timeout: 4
};

Shelly.call("HTTP.REQUEST", h, function (result,error_code,error_message) {

print(result);
});